Skip to content

Commit

Permalink
test: update tests to reflect a unioned sort order added to UNION node
Browse files Browse the repository at this point in the history
  • Loading branch information
wiedld committed Sep 19, 2024
1 parent ad4a321 commit 53e0c56
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions datafusion/physical-expr/src/equivalence/properties.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2724,8 +2724,8 @@ mod tests {
Arc::clone(&schema3),
),
],
// Expected
vec![vec!["a", "b"]],
// Expected: union sort orders
vec![vec!["a", "b", "c"]],
),
// --------- TEST CASE 2 ----------
(
Expand Down Expand Up @@ -2799,8 +2799,8 @@ mod tests {
Arc::clone(&schema3),
),
],
// Expected
vec![],
// Expected: union sort orders
vec![vec!["a", "b", "c"]],
),
// --------- TEST CASE 5 ----------
(
Expand Down

0 comments on commit 53e0c56

Please sign in to comment.