@@ -25,8 +25,7 @@ $$ LANGUAGE PLPGSQL;
2525-- in the next queries with the same fss_hash
2626SELECT str AS result
2727FROM expln('
28- SELECT x FROM A where x = 5;') AS str
29- WHERE str NOT LIKE 'Query Identifier%';
28+ SELECT x FROM A where x = 5;') AS str;
3029 result
3130------------------------------------------------
3231 Seq Scan on public.a (actual rows=100 loops=1)
@@ -42,7 +41,6 @@ WHERE str NOT LIKE 'Query Identifier%';
4241SELECT str AS result
4342FROM expln('
4443SELECT x FROM A,B WHERE x = 5 AND A.x = B.y;') AS str
45- WHERE str NOT LIKE 'Query Identifier%'
4644; -- Find cardinality for SCAN A(x=5) from a neighbour class, created by the
4745 result
4846--------------------------------------------------------
@@ -68,7 +66,6 @@ WHERE str NOT LIKE 'Query Identifier%'
6866SELECT str AS result
6967FROM expln('
7068SELECT x, sum(x) FROM A,B WHERE y = 5 AND A.x = B.y group by(x);') AS str
71- WHERE str NOT LIKE 'Query Identifier%'
7269; -- Find the JOIN cardinality from a neighbour class.
7370 result
7471--------------------------------------------------------------
@@ -97,8 +94,7 @@ WHERE str NOT LIKE 'Query Identifier%'
9794-- cardinality 100 in the first Seq Scan on a
9895SELECT str AS result
9996FROM expln('
100- SELECT x, sum(x) FROM A WHERE x = 5 group by(x);') AS str
101- WHERE str NOT LIKE 'Query Identifier%';
97+ SELECT x, sum(x) FROM A WHERE x = 5 group by(x);') AS str;
10298 result
10399------------------------------------------------------
104100 GroupAggregate (actual rows=1 loops=1)
@@ -120,7 +116,7 @@ WHERE str NOT LIKE 'Query Identifier%';
120116SELECT str AS result
121117FROM expln('
122118SELECT x FROM A where x < 10 group by(x);') AS str
123- WHERE str NOT LIKE 'Query Identifier%' and str NOT LIKE ' %Memory%';
119+ WHERE str NOT LIKE '%Memory%';
124120 result
125121-------------------------------------------------------
126122 HashAggregate (actual rows=10 loops=1)
@@ -140,7 +136,7 @@ WHERE str NOT LIKE 'Query Identifier%' and str NOT LIKE '%Memory%';
140136SELECT str AS result
141137FROM expln('
142138SELECT x,y FROM A,B WHERE x < 10 AND A.x = B.y;') AS str
143- WHERE str NOT LIKE 'Query Identifier%' and str NOT LIKE ' %Memory%';
139+ WHERE str NOT LIKE '%Memory%';
144140 result
145141-------------------------------------------------------------
146142 Merge Join (actual rows=100000 loops=1)
@@ -169,7 +165,7 @@ WHERE str NOT LIKE 'Query Identifier%' and str NOT LIKE '%Memory%';
169165SELECT str AS result
170166FROM expln('
171167SELECT x FROM A,B where x < 10 and y > 10 group by(x);') AS str
172- WHERE str NOT LIKE 'Query Identifier%' and str NOT LIKE ' %Memory%';
168+ WHERE str NOT LIKE '%Memory%';
173169 result
174170----------------------------------------------------------
175171 HashAggregate (actual rows=0 loops=1)
@@ -200,7 +196,7 @@ WHERE str NOT LIKE 'Query Identifier%' and str NOT LIKE '%Memory%';
200196SELECT str AS result
201197FROM expln('
202198SELECT x,y FROM A,B WHERE x < 10 and y > 10 AND A.x = B.y;') AS str
203- WHERE str NOT LIKE 'Query Identifier%' and str NOT LIKE ' %Memory%'
199+ WHERE str NOT LIKE '%Memory%'
204200;
205201 result
206202----------------------------------------------------------