From 93f3dbc5c07ebacead4245a24cf71c29d97d0276 Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Sun, 5 Nov 2023 10:35:04 -0700 Subject: [PATCH] clippy --- src/substrait.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/substrait.rs b/src/substrait.rs index d027ad21f..73606fdfa 100644 --- a/src/substrait.rs +++ b/src/substrait.rs @@ -134,7 +134,7 @@ impl PySubstraitConsumer { plan: PyPlan, py: Python, ) -> PyResult { - let result = consumer::from_substrait_plan(&mut ctx.ctx, &plan.plan); + let result = consumer::from_substrait_plan(&ctx.ctx, &plan.plan); let logical_plan = wait_for_future(py, result).map_err(DataFusionError::from)?; Ok(PyLogicalPlan::new(logical_plan)) }