Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Aug 7, 2024
1 parent 7365f8c commit f27a918
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion datafusion-examples/examples/planner_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ async fn to_physical_plan_step_by_step_demo(
// Note that this is not part of the trait but a public method
// on DefaultPhysicalPlanner. Not all planners will provide this feature.
let planner = DefaultPhysicalPlanner::default();
let physical_plan = planner.optimize_physical_plan(physical_plan, &ctx.state(), |_,_| {})?;
let physical_plan =
planner.optimize_physical_plan(physical_plan, &ctx.state(), |_, _| {})?;
println!(
"Optimized physical plan:\n\n{}\n\n",
displayable(physical_plan.as_ref())
Expand Down

0 comments on commit f27a918

Please sign in to comment.