Skip to content

Commit 67bc04c

Browse files
authored
bump arrow version to 54.1.0 and fix clippy error (#14414)
* bump arrow version and fix clippy error * add df-cli
1 parent 3dfce7d commit 67bc04c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/physical-expr/src/window/standard.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ impl WindowExpr for StandardWindowExpr {
275275
pub(crate) fn add_new_ordering_expr_with_partition_by(
276276
eqp: &mut EquivalenceProperties,
277277
expr: PhysicalSortExpr,
278-
partition_by: &Vec<Arc<dyn PhysicalExpr>>,
278+
partition_by: &[Arc<dyn PhysicalExpr>],
279279
) {
280280
if partition_by.is_empty() {
281281
// In the absence of a PARTITION BY, ordering of `self.expr` is global:

0 commit comments

Comments
 (0)