We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0961418 commit 35d366eCopy full SHA for 35d366e
datafusion/core/src/physical_planner.rs
@@ -802,10 +802,17 @@ impl DefaultPhysicalPlanner {
802
));
803
}
804
805
- return internal_err!(
+ debug!(
806
"Physical input schema should be the same as the one converted from logical input schema. Differences: {}",
807
differences.iter().map(|s| format!("\n\t- {s}")).join("")
808
);
809
+
810
+ //influx: temporarily remove error and only log so that we can find a
811
+ //reproducer in production
812
+ // return internal_err!("Physical input schema should be the same as the one converted from logical input schema. Differences: {}", differences
813
+ // .iter()
814
+ // .map(|s| format!("\n\t- {s}"))
815
+ // .join(""));
816
817
818
let groups = self.create_grouping_physical_expr(
0 commit comments