You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"field name at index {}: (physical) {} vs (logical) {}",
681
+
i,
682
+
physical_field.name(),
683
+
logical_field.name()
684
+
));
685
+
}
686
+
if physical_field.data_type() != logical_field.data_type(){
687
+
differences.push(format!("field data type at index {} [{}]: (physical) {} vs (logical) {}", i, physical_field.name(), physical_field.data_type(), logical_field.data_type()));
688
+
}
689
+
if physical_field.is_nullable() != logical_field.is_nullable(){
690
+
differences.push(format!("field nullability at index {} [{}]: (physical) {} vs (logical) {}", i, physical_field.name(), physical_field.is_nullable(), logical_field.is_nullable()));
691
+
}
692
+
}
693
+
returninternal_err!("Physical input schema should be the same as the one converted from logical input schema. Differences: {}", differences
0 commit comments