Add ORDER BY clause to unstable JOIN test queries

This commit is contained in:
Sven Klemm 2019-09-01 17:15:55 +02:00 committed by Sven Klemm
parent 8bb14d7fd2
commit eaf93b5fc8

View File

@ -983,14 +983,14 @@ where t1.unique1 < i4.f1;
:PREFIX :PREFIX
select * from tenk1 a join tenk1 b on select * from tenk1 a join tenk1 b on
(a.unique1 = 1 and b.unique1 = 2) or (a.unique2 = 3 and b.hundred = 4); (a.unique1 = 1 and b.unique1 = 2) or (a.unique2 = 3 and b.hundred = 4) ORDER BY a.unique2,b.unique2;
:PREFIX :PREFIX
select * from tenk1 a join tenk1 b on select * from tenk1 a join tenk1 b on
(a.unique1 = 1 and b.unique1 = 2) or (a.unique2 = 3 and b.ten = 4); (a.unique1 = 1 and b.unique1 = 2) or (a.unique2 = 3 and b.ten = 4) ORDER BY a.unique2,b.unique2;
:PREFIX :PREFIX
select * from tenk1 a join tenk1 b on select * from tenk1 a join tenk1 b on
(a.unique1 = 1 and b.unique1 = 2) or (a.unique1 = 1 and b.unique1 = 2) or
((a.unique2 = 3 or a.unique2 = 7) and b.hundred = 4); ((a.unique2 = 3 or a.unique2 = 7) and b.hundred = 4) ORDER BY a.unique2,b.unique2;
-- --
-- test placement of movable quals in a parameterized join tree -- test placement of movable quals in a parameterized join tree