Skip to content

Commit 7b53d3e

Browse files
authored
Merge pull request #15 from polygon-io/branch-50-upgrade
Fix potential overflow when we print verbose physical plan
2 parents 5a85b7d + 172371b commit 7b53d3e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

datafusion/core/src/physical_planner.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2093,7 +2093,11 @@ impl DefaultPhysicalPlanner {
20932093
"Optimized physical plan:\n{}\n",
20942094
displayable(new_plan.as_ref()).indent(false)
20952095
);
2096-
debug!("Detailed optimized physical plan:\n{new_plan:?}");
2096+
2097+
debug!(
2098+
"Detailed optimized physical plan:\n{}\n",
2099+
displayable(new_plan.as_ref()).indent(true)
2100+
);
20972101
Ok(new_plan)
20982102
}
20992103

0 commit comments

Comments
 (0)