File tree Expand file tree Collapse file tree 2 files changed +0
-30
lines changed Expand file tree Collapse file tree 2 files changed +0
-30
lines changed Original file line number Diff line number Diff line change @@ -126,31 +126,6 @@ WHERE str NOT LIKE 'Query Identifier%' and str NOT LIKE '%Memory%';
126
126
JOINS: 0
127
127
(17 rows)
128
128
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
-
154
129
SELECT str AS result
155
130
FROM expln('
156
131
SELECT x1,y1 FROM A,B WHERE x1 > 5 AND x2 > 5 AND x3 < 10 AND A.x1 = B.y1;') AS str
Original file line number Diff line number Diff line change @@ -54,11 +54,6 @@ FROM expln('
54
54
SELECT x1,y1 FROM A,B WHERE x1 < 10 AND x2 < 5 AND A.x1 = B.y1;' ) AS str
55
55
WHERE str NOT LIKE ' Query Identifier%' and str NOT LIKE ' %Memory%' ;
56
56
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
-
62
57
SELECT str AS result
63
58
FROM expln('
64
59
SELECT x1,y1 FROM A,B WHERE x1 > 5 AND x2 > 5 AND x3 < 10 AND A.x1 = B.y1;' ) AS str
You can’t perform that action at this time.
0 commit comments