Skip to content

Commit

Permalink
remove unnecessary clone
Browse files Browse the repository at this point in the history
  • Loading branch information
huaxingao committed Aug 20, 2024
1 parent 61709cc commit a0e122b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/core/src/execution/datafusion/planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1574,7 +1574,7 @@ impl PhysicalPlanner {
let cast_expr = Arc::new(CastExpr::new(expr, DataType::Int64, None));
PhysicalSortExpr {
expr: cast_expr,
options: sort_expr.options.clone(),
options: sort_expr.options,
}
})
.collect();
Expand Down

0 comments on commit a0e122b

Please sign in to comment.