From f47257ad5183e73221d8ed9af270741ad08f948a Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Tue, 9 Jul 2024 06:41:51 -0600 Subject: [PATCH] clippy --- native/core/src/execution/datafusion/planner.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/core/src/execution/datafusion/planner.rs b/native/core/src/execution/datafusion/planner.rs index 56d6dd5af..360380400 100644 --- a/native/core/src/execution/datafusion/planner.rs +++ b/native/core/src/execution/datafusion/planner.rs @@ -675,7 +675,7 @@ impl PhysicalPlanner { DataType::Decimal256(p2, s2), EvalMode::Legacy, )); - let child = Arc::new(BinaryExpr::new(left, op.clone(), right)); + let child = Arc::new(BinaryExpr::new(left, op, right)); Ok(Arc::new(Cast::new_without_timezone( child, data_type,