File tree Expand file tree Collapse file tree 2 files changed +14
-14
lines changed
Expand file tree Collapse file tree 2 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -232,23 +232,23 @@ SELECT *, pg_typeof(f1) FROM
232232(3 rows)
233233
234234-- ... unless there's context to suggest differently
235- explain verbose select '42' union all select '43';
236- QUERY PLAN
237- -------------------------------------------------
238- Append (cost=0.00..0.05 rows=2 width=32)
239- -> Result (cost=0.00..0.01 rows=1 width=32)
235+ explain ( verbose, costs off) select '42' union all select '43';
236+ QUERY PLAN
237+ ----------------------------
238+ Append
239+ -> Result
240240 Output: '42'::text
241- -> Result (cost=0.00..0.01 rows=1 width=32)
241+ -> Result
242242 Output: '43'::text
243243(5 rows)
244244
245- explain verbose select '42' union all select 43;
246- QUERY PLAN
247- ------------------------------------------------
248- Append (cost=0.00..0.05 rows=2 width=4)
249- -> Result (cost=0.00..0.01 rows=1 width=4)
245+ explain ( verbose, costs off) select '42' union all select 43;
246+ QUERY PLAN
247+ --------------------
248+ Append
249+ -> Result
250250 Output: 42
251- -> Result (cost=0.00..0.01 rows=1 width=4)
251+ -> Result
252252 Output: 43
253253(5 rows)
254254
Original file line number Diff line number Diff line change @@ -99,8 +99,8 @@ SELECT *, pg_typeof(f1) FROM
9999
100100-- ... unless there's context to suggest differently
101101
102- explain verbose select ' 42' union all select ' 43' ;
103- explain verbose select ' 42' union all select 43 ;
102+ explain ( verbose, costs off) select ' 42' union all select ' 43' ;
103+ explain ( verbose, costs off) select ' 42' union all select 43 ;
104104
105105-- check materialization of an initplan reference (bug #14524)
106106explain (verbose, costs off)
You can’t perform that action at this time.
0 commit comments