mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-18 19:59:48 +08:00
Add ORDER BY clause to unstable JOIN test queries
This commit is contained in:
parent
8bb14d7fd2
commit
eaf93b5fc8
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user