We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5a85b7d + 172371b commit 7b53d3eCopy full SHA for 7b53d3e
1 file changed
datafusion/core/src/physical_planner.rs
@@ -2093,7 +2093,11 @@ impl DefaultPhysicalPlanner {
2093
"Optimized physical plan:\n{}\n",
2094
displayable(new_plan.as_ref()).indent(false)
2095
);
2096
- debug!("Detailed optimized physical plan:\n{new_plan:?}");
+
2097
+ debug!(
2098
+ "Detailed optimized physical plan:\n{}\n",
2099
+ displayable(new_plan.as_ref()).indent(true)
2100
+ );
2101
Ok(new_plan)
2102
}
2103
0 commit comments