Skip to content

Commit ea8e2ef

Browse files
author
Alena Rybakina
committed
Fix result look-a-like test after rebase.
1 parent ba9380b commit ea8e2ef

File tree

2 files changed

+0
-30
lines changed

2 files changed

+0
-30
lines changed

expected/look_a_like.out

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -126,31 +126,6 @@ WHERE str NOT LIKE 'Query Identifier%' and str NOT LIKE '%Memory%';
126126
JOINS: 0
127127
(17 rows)
128128

129-
SELECT str AS result
130-
FROM expln('
131-
SELECT x1,y1 FROM A,B WHERE x1 > 2 AND x2 > 2 AND A.x1 = B.y1;') AS str
132-
WHERE str NOT LIKE 'Query Identifier%' and str NOT LIKE '%Memory%';
133-
result
134-
------------------------------------------------------------
135-
Hash Join (actual rows=70000 loops=1)
136-
AQO not used
137-
Output: a.x1, b.y1
138-
Hash Cond: (b.y1 = a.x1)
139-
-> Seq Scan on public.b (actual rows=1000 loops=1)
140-
AQO: rows=1000, error=0%
141-
Output: b.y1, b.y2, b.y3
142-
-> Hash (actual rows=700 loops=1)
143-
Output: a.x1
144-
-> Seq Scan on public.a (actual rows=700 loops=1)
145-
AQO not used
146-
Output: a.x1
147-
Filter: ((a.x1 > 2) AND (a.x2 > 2))
148-
Rows Removed by Filter: 300
149-
Using aqo: true
150-
AQO mode: LEARN
151-
JOINS: 0
152-
(17 rows)
153-
154129
SELECT str AS result
155130
FROM expln('
156131
SELECT x1,y1 FROM A,B WHERE x1 > 5 AND x2 > 5 AND x3 < 10 AND A.x1 = B.y1;') AS str

sql/look_a_like.sql

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,6 @@ FROM expln('
5454
SELECT x1,y1 FROM A,B WHERE x1 < 10 AND x2 < 5 AND A.x1 = B.y1;') AS str
5555
WHERE str NOT LIKE 'Query Identifier%' and str NOT LIKE '%Memory%';
5656

57-
SELECT str AS result
58-
FROM expln('
59-
SELECT x1,y1 FROM A,B WHERE x1 > 2 AND x2 > 2 AND A.x1 = B.y1;') AS str
60-
WHERE str NOT LIKE 'Query Identifier%' and str NOT LIKE '%Memory%';
61-
6257
SELECT str AS result
6358
FROM expln('
6459
SELECT x1,y1 FROM A,B WHERE x1 > 5 AND x2 > 5 AND x3 < 10 AND A.x1 = B.y1;') AS str

0 commit comments

Comments
 (0)