Commit 8994cc6f authored by Tom Lane's avatar Tom Lane

Add ORDER BY to more ICU regression test cases.

Commit c77e1220 didn't fully fix the problem.  Per buildfarm
and local testing.
parent 7c366ac9
......@@ -1490,18 +1490,18 @@ SELECT x FROM test2bpci UNION SELECT x FROM test1bpci ORDER BY x;
ghi
(3 rows)
SELECT x FROM test1bpci INTERSECT SELECT x FROM test2bpci;
SELECT x FROM test1bpci INTERSECT SELECT x FROM test2bpci ORDER BY x;
x
-----
ghi
abc
ghi
(2 rows)
SELECT x FROM test2bpci INTERSECT SELECT x FROM test1bpci;
SELECT x FROM test2bpci INTERSECT SELECT x FROM test1bpci ORDER BY x;
x
-----
ghi
ABC
ghi
(2 rows)
SELECT x FROM test1bpci EXCEPT SELECT x FROM test2bpci;
......
......@@ -548,8 +548,8 @@ SELECT x FROM test3bpci WHERE x SIMILAR TO 'a%';
SELECT x FROM test3bpci WHERE x ~ 'a';
SELECT x FROM test1bpci UNION SELECT x FROM test2bpci ORDER BY x;
SELECT x FROM test2bpci UNION SELECT x FROM test1bpci ORDER BY x;
SELECT x FROM test1bpci INTERSECT SELECT x FROM test2bpci;
SELECT x FROM test2bpci INTERSECT SELECT x FROM test1bpci;
SELECT x FROM test1bpci INTERSECT SELECT x FROM test2bpci ORDER BY x;
SELECT x FROM test2bpci INTERSECT SELECT x FROM test1bpci ORDER BY x;
SELECT x FROM test1bpci EXCEPT SELECT x FROM test2bpci;
SELECT x FROM test2bpci EXCEPT SELECT x FROM test1bpci;
SELECT DISTINCT x FROM test3bpci ORDER BY x;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment