You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test: update new test which is part of Nov 20th upgrade, because the SanityCheck plan patch (to turn it off) makes the output result sort nondeterministic
Copy file name to clipboardexpand all lines: datafusion/sqllogictest/test_files/union.slt
+2-2
Original file line number
Diff line number
Diff line change
@@ -769,8 +769,8 @@ SELECT NULL WHERE FALSE;
769
769
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'
770
770
SELECT make_array(2) x UNION ALL SELECT make_array(now()) x;
771
771
772
-
query ? rowsort
773
-
select make_array(arrow_cast(2, 'UInt8')) x UNION ALL SELECT make_array(arrow_cast(-2, 'Int8')) x;
772
+
query ?
773
+
select make_array(arrow_cast(2, 'UInt8')) x UNION ALL SELECT make_array(arrow_cast(-2, 'Int8')) x order by 1;
0 commit comments