Skip to content

Commit

Permalink
Update datafusion/physical-expr/src/utils.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Liang-Chi Hsieh <[email protected]>
  • Loading branch information
berkaysynnada and viirya authored Sep 4, 2023
1 parent ed8a4f9 commit 5bc5478
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datafusion/physical-expr/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1985,7 +1985,7 @@ mod tests {
Field::new("b", DataType::Int32, true),
Field::new("c", DataType::Int32, true),
]);
let empty_ordering = find_orderings_of_exprs(
let one_ordering = find_orderings_of_exprs(
&[
(Arc::new(Column::new("b", 1)), "b_new".to_string()),
(Arc::new(Column::new("a", 0)), "a_new".to_string()),
Expand All @@ -2006,7 +2006,7 @@ mod tests {
}),
None,
],
empty_ordering
one_ordering
);

let schema = Schema::new(vec![
Expand Down

0 comments on commit 5bc5478

Please sign in to comment.