diff --git a/tests/cases/standalone/common/setops/basic_setops.result b/tests/cases/standalone/common/setops/basic_setops.result index 47a2bedcfe..a88fca2001 100644 --- a/tests/cases/standalone/common/setops/basic_setops.result +++ b/tests/cases/standalone/common/setops/basic_setops.result @@ -1,5 +1,5 @@ -- Migrated from DuckDB test: test/sql/setops/test_setops.test -SELECT 1 UNION ALL SELECT 2; +SELECT 1 UNION ALL SELECT 2 ORDER BY 1; +----------+ | Int64(1) | @@ -8,7 +8,7 @@ SELECT 1 UNION ALL SELECT 2; | 2 | +----------+ -SELECT 1, 'a' UNION ALL SELECT 2, 'b'; +SELECT 1, 'a' UNION ALL SELECT 2, 'b' ORDER BY 1; +----------+-----------+ | Int64(1) | Utf8("a") | diff --git a/tests/cases/standalone/common/setops/basic_setops.sql b/tests/cases/standalone/common/setops/basic_setops.sql index dca9e06c92..b0ade78c16 100644 --- a/tests/cases/standalone/common/setops/basic_setops.sql +++ b/tests/cases/standalone/common/setops/basic_setops.sql @@ -1,8 +1,8 @@ -- Migrated from DuckDB test: test/sql/setops/test_setops.test -SELECT 1 UNION ALL SELECT 2; +SELECT 1 UNION ALL SELECT 2 ORDER BY 1; -SELECT 1, 'a' UNION ALL SELECT 2, 'b'; +SELECT 1, 'a' UNION ALL SELECT 2, 'b' ORDER BY 1; SELECT 1, 'a' UNION ALL SELECT 2, 'b' UNION ALL SELECT 3, 'c' ORDER BY 1;