Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
Signed-off-by: Ruihang Xia <[email protected]>
  • Loading branch information
waynexia committed Jul 31, 2024
1 parent 748374e commit a8e4317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion-examples/examples/planner_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ async fn to_physical_plan_in_one_api_demo(
input: &LogicalPlan,
ctx: &SessionContext,
) -> Result<()> {
let physical_plan = ctx.state().create_physical_plan(&input).await?;
let physical_plan = ctx.state().create_physical_plan(input).await?;

println!(
"Physical plan direct from logical plan:\n\n{}\n\n",
Expand Down

0 comments on commit a8e4317

Please sign in to comment.