Skip to content

Commit

Permalink
test: update new test which is part of Nov 20th upgrade, because the …
Browse files Browse the repository at this point in the history
…SanityCheck plan patch (to turn it off) makes the output result sort nondeterministic
  • Loading branch information
wiedld committed Jan 9, 2025
1 parent e8c5d9d commit 648c996
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datafusion/sqllogictest/test_files/union.slt
Original file line number Diff line number Diff line change
Expand Up @@ -769,8 +769,8 @@ SELECT NULL WHERE FALSE;
query error DataFusion error: type_coercion\ncaused by\nError during planning: Incompatible inputs for Union: Previous inputs were of type List(.*), but got incompatible type List(.*) on column 'x'
SELECT make_array(2) x UNION ALL SELECT make_array(now()) x;

query ? rowsort
select make_array(arrow_cast(2, 'UInt8')) x UNION ALL SELECT make_array(arrow_cast(-2, 'Int8')) x;
query ?
select make_array(arrow_cast(2, 'UInt8')) x UNION ALL SELECT make_array(arrow_cast(-2, 'Int8')) x order by 1;
----
[-2]
[2]
Expand Down

0 comments on commit 648c996

Please sign in to comment.