Skip to content

Commit c2eb2dc

Browse files
committed
lint
1 parent 54a8dbd commit c2eb2dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/core/tests/schema_adapter/schema_adapter_integration_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ fn push_down_filters(
228228
plan: Arc<dyn ExecutionPlan>,
229229
filter: &Expr,
230230
) -> Result<Arc<dyn ExecutionPlan>> {
231-
let filter_expr = logical2physical(&filter, &plan.schema());
231+
let filter_expr = logical2physical(filter, &plan.schema());
232232
let plan = Arc::new(FilterExec::try_new(filter_expr, plan)?);
233233
let cfg = SessionConfig::new()
234234
.set_str("datafusion.execution.parquet.pushdown_filters", "true");

0 commit comments

Comments
 (0)