Skip to content

Commit 5b1b438

Browse files
committed
Update pg18 test outputs
1 parent cacb384 commit 5b1b438

6 files changed

Lines changed: 64 additions & 64 deletions

File tree

regress/18/expected/cursor.out

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,19 +147,19 @@ SELECT span_type, span_operation, lvl from peek_ordered_spans where trace_id='00
147147
ProcessUtility | ProcessUtility | 2
148148
Utility query | DECLARE c CURSOR FOR SELECT * from pg_tracing_test; | 1
149149
ProcessUtility | ProcessUtility | 2
150-
Select query | SELECT * from pg_tracing_test; | 3
150+
Select query | DECLARE c CURSOR FOR SELECT * from pg_tracing_test; | 3
151151
Planner | Planner | 4
152152
Utility query | FETCH FORWARD 20 from c | 1
153153
ProcessUtility | ProcessUtility | 2
154-
Select query | SELECT * from pg_tracing_test; | 3
154+
Select query | DECLARE c CURSOR FOR SELECT * from pg_tracing_test; | 3
155155
ExecutorRun | ExecutorRun | 4
156156
Utility query | FETCH BACKWARD 10 from c | 1
157157
ProcessUtility | ProcessUtility | 2
158-
Select query | SELECT * from pg_tracing_test; | 3
158+
Select query | DECLARE c CURSOR FOR SELECT * from pg_tracing_test; | 3
159159
ExecutorRun | ExecutorRun | 4
160160
Utility query | CLOSE c; | 1
161161
ProcessUtility | ProcessUtility | 2
162-
Select query | SELECT * from pg_tracing_test; | 3
162+
Select query | DECLARE c CURSOR FOR SELECT * from pg_tracing_test; | 3
163163
Utility query | COMMIT; | 1
164164
ProcessUtility | ProcessUtility | 2
165165
(20 rows)

regress/18/expected/planstate_bitmap.out

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ SELECT span_operation, deparse_info, parameters, pos_start, pos_end, lvl from pe
2424
SELECT * from pg_tracing_test where a=$1 OR b=$2 OR c=$3 | | {1,'2',3} | 1 | 11 | 0
2525
Planner | | | 2 | 3 | 1
2626
ExecutorRun | | | 4 | 10 | 1
27-
BitmapHeapScan on pg_tracing_test | Recheck Cond: ((c = 3) OR (b = '2'::bpchar) OR (a = 1)) | | 5 | 9 | 2
27+
BitmapHeapScan on pg_tracing_test | Recheck Cond: ((a = 1) OR (b = '2'::bpchar) OR (c = 3)) | | 5 | 9 | 2
2828
BitmapOr | | | 5 | 8 | 3
29-
BitmapIndexScan on pg_tracing_index_c | Index Cond: (c = 3) | | 5 | 6 | 4
29+
BitmapIndexScan on pg_tracing_index_a | Index Cond: (a = 1) | | 5 | 6 | 4
3030
BitmapIndexScan on pg_tracing_index_b | Index Cond: (b = '2'::bpchar) | | 6 | 7 | 4
31-
BitmapIndexScan on pg_tracing_index_a | Index Cond: (a = 1) | | 7 | 8 | 4
31+
BitmapIndexScan on pg_tracing_index_c | Index Cond: (c = 3) | | 7 | 8 | 4
3232
(8 rows)
3333

3434
-- Clean created spans

regress/18/expected/planstate_projectset.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ SELECT span_operation, deparse_info, parameters, lvl from peek_ordered_spans whe
1414
ExecutorRun | | | 1
1515
ProjectSet | | | 2
1616
Result | | | 3
17-
SELECT * FROM pg_catalog.unnest($1) WITH ORDINALITY | | | 3
17+
SELECT * FROM pg_catalog.unnest($1) WITH ORDINALITY | | {"{0,1,2}"} | 3
1818
Planner | | | 4
1919
(7 rows)
2020

regress/18/expected/select.out

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -198,18 +198,18 @@ SELECT lazy_function('{1,2,3,4}'::int[]) FROM (VALUES (1,2)) as t;
198198
(4 rows)
199199

200200
SELECT span_type, span_operation, parameters, lvl from peek_ordered_spans;
201-
span_type | span_operation | parameters | lvl
202-
-------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------+-----
203-
Utility query | CREATE OR REPLACE FUNCTION lazy_function(IN anyarray, OUT x anyelement) RETURNS SETOF anyelement LANGUAGE sql AS 'select * from pg_catalog.generate_series(array_lower($1, 1), array_upper($1, 1), 1)'; | | 0
204-
ProcessUtility | ProcessUtility | | 1
205-
TransactionCommit | TransactionCommit | | 0
206-
Select query | SELECT lazy_function($1::int[]) FROM (VALUES ($2,$3)) as t | {"'{1,2,3,4}'",1,2} | 0
207-
Planner | Planner | | 1
208-
ExecutorRun | ExecutorRun | | 1
209-
ProjectSet | ProjectSet | | 2
210-
Result | Result | | 3
211-
Select query | select * from pg_catalog.generate_series(array_lower($1, $2), array_upper($1, $3), $4) | {1,1,1} | 3
212-
Planner | Planner | | 4
201+
span_type | span_operation | parameters | lvl
202+
-------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----
203+
Utility query | CREATE OR REPLACE FUNCTION lazy_function(IN anyarray, OUT x anyelement) RETURNS SETOF anyelement LANGUAGE sql AS 'select * from pg_catalog.generate_series(array_lower($1, 1), array_upper($1, 1), 1)'; | | 0
204+
ProcessUtility | ProcessUtility | | 1
205+
TransactionCommit | TransactionCommit | | 0
206+
Select query | SELECT lazy_function($1::int[]) FROM (VALUES ($2,$3)) as t | {"'{1,2,3,4}'",1,2} | 0
207+
Planner | Planner | | 1
208+
ExecutorRun | ExecutorRun | | 1
209+
ProjectSet | ProjectSet | | 2
210+
Result | Result | | 3
211+
Select query | select * from pg_catalog.generate_series(array_lower($1, $2), array_upper($1, $3), $4) | {"{1,2,3,4}","select * from pg_catalog.generate_series(array_lower($1, $2), array_upper($1, $3), $4)","SELECT lazy_function($1::int[]) FROM (VALUES ($2,$3)) as t",T;} | 3
212+
Planner | Planner | | 4
213213
(10 rows)
214214

215215
CALL clean_spans();
@@ -221,20 +221,20 @@ SELECT information_schema._pg_truetypid(a, t) FROM pg_attribute a, pg_type t lim
221221
(1 row)
222222

223223
SELECT span_type, span_operation, parameters, lvl from peek_ordered_spans;
224-
span_type | span_operation | parameters | lvl
225-
--------------+---------------------------------------------------------------------------------------+------------+-----
226-
Select query | SELECT information_schema._pg_truetypid(a, t) FROM pg_attribute a, pg_type t limit $1 | {1} | 0
227-
Planner | Planner | | 1
228-
ExecutorRun | ExecutorRun | | 1
229-
Limit | Limit | | 2
230-
NestedLoop | NestedLoop | | 3
231-
SeqScan | SeqScan on pg_attribute a | | 4
232-
Materialize | Materialize | | 4
233-
SeqScan | SeqScan on pg_type t | | 5
234-
Select query | Select query | | 2
235-
Planner | Planner | | 3
236-
ExecutorRun | ExecutorRun | | 3
237-
Result | Result | | 4
224+
span_type | span_operation | parameters | lvl
225+
--------------+---------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----
226+
Select query | SELECT information_schema._pg_truetypid(a, t) FROM pg_attribute a, pg_type t limit $1 | {1} | 0
227+
Planner | Planner | | 1
228+
ExecutorRun | ExecutorRun | | 1
229+
Limit | Limit | | 2
230+
NestedLoop | NestedLoop | | 3
231+
SeqScan | SeqScan on pg_attribute a | | 4
232+
Materialize | Materialize | | 4
233+
SeqScan | SeqScan on pg_type t | | 5
234+
Select query | Select query | {"(1255,oid,26,4,1,-1,0,t,i,p,\"\",t,f,f,\"\",\"\",f,t,0,0,,,,,)","(16,bool,11,10,1,t,b,B,t,t,\",\",0,-,0,1000,boolin,boolout,boolrecv,boolsend,-,-,-,c,p,f,0,-1,0,0,,,)"} | 2
235+
Planner | Planner | | 3
236+
ExecutorRun | ExecutorRun | | 3
237+
Result | Result | | 4
238238
(12 rows)
239239

240240
CALL clean_spans();

0 commit comments

Comments
 (0)