Skip to content

Commit

Permalink
fixed clippy error
Browse files Browse the repository at this point in the history
  • Loading branch information
jatin510 committed Nov 3, 2024
1 parent 8f35562 commit 09e81fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/core/tests/fuzz_cases/equivalence/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ pub fn generate_table_for_orderings(

// prune out rows that is invalid according to remaining orderings.
for ordering in orderings.iter().skip(1) {
let sort_columns = get_sort_columns(&batch, ordering.as_ref())?;
let sort_columns = get_sort_columns(&batch, ordering)?;

// Collect sort options and values into separate vectors.
let (sort_options, sort_col_values): (Vec<_>, Vec<_>) = sort_columns
Expand Down

0 comments on commit 09e81fb

Please sign in to comment.