Skip to content

Commit 35d366e

Browse files
erratic-patternalamb
authored andcommitted
chore: add debug logging and skip error on physical schema check
1 parent 0961418 commit 35d366e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

datafusion/core/src/physical_planner.rs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -802,10 +802,17 @@ impl DefaultPhysicalPlanner {
802802
));
803803
}
804804
}
805-
return internal_err!(
805+
debug!(
806806
"Physical input schema should be the same as the one converted from logical input schema. Differences: {}",
807807
differences.iter().map(|s| format!("\n\t- {s}")).join("")
808808
);
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(""));
809816
}
810817

811818
let groups = self.create_grouping_physical_expr(

0 commit comments

Comments
 (0)