Age Owner Branch data TLA Line data Source code
1 : : /*-------------------------------------------------------------------------
2 : : *
3 : : * explain.c
4 : : * Explain query execution plans
5 : : *
6 : : * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
7 : : * Portions Copyright (c) 1994-5, Regents of the University of California
8 : : *
9 : : * IDENTIFICATION
10 : : * src/backend/commands/explain.c
11 : : *
12 : : *-------------------------------------------------------------------------
13 : : */
14 : : #include "postgres.h"
15 : :
16 : : #include "access/relscan.h"
17 : : #include "access/xact.h"
18 : : #include "catalog/pg_type.h"
19 : : #include "commands/createas.h"
20 : : #include "commands/defrem.h"
21 : : #include "commands/explain.h"
22 : : #include "commands/explain_dr.h"
23 : : #include "commands/explain_format.h"
24 : : #include "commands/explain_state.h"
25 : : #include "commands/prepare.h"
26 : : #include "foreign/fdwapi.h"
27 : : #include "jit/jit.h"
28 : : #include "libpq/pqformat.h"
29 : : #include "libpq/protocol.h"
30 : : #include "nodes/extensible.h"
31 : : #include "nodes/makefuncs.h"
32 : : #include "nodes/nodeFuncs.h"
33 : : #include "parser/analyze.h"
34 : : #include "parser/parsetree.h"
35 : : #include "rewrite/rewriteHandler.h"
36 : : #include "storage/bufmgr.h"
37 : : #include "tcop/tcopprot.h"
38 : : #include "utils/builtins.h"
39 : : #include "utils/guc_tables.h"
40 : : #include "utils/json.h"
41 : : #include "utils/lsyscache.h"
42 : : #include "utils/rel.h"
43 : : #include "utils/ruleutils.h"
44 : : #include "utils/snapmgr.h"
45 : : #include "utils/tuplesort.h"
46 : : #include "utils/tuplestore.h"
47 : : #include "utils/typcache.h"
48 : : #include "utils/xml.h"
49 : :
50 : :
51 : : /* Hook for plugins to get control in ExplainOneQuery() */
52 : : ExplainOneQuery_hook_type ExplainOneQuery_hook = NULL;
53 : :
54 : : /* Hook for plugins to get control in explain_get_index_name() */
55 : : explain_get_index_name_hook_type explain_get_index_name_hook = NULL;
56 : :
57 : : /* per-plan and per-node hooks for plugins to print additional info */
58 : : explain_per_plan_hook_type explain_per_plan_hook = NULL;
59 : : explain_per_node_hook_type explain_per_node_hook = NULL;
60 : :
61 : : /*
62 : : * Various places within need to convert bytes to kilobytes. Round these up
63 : : * to the next whole kilobyte.
64 : : */
65 : : #define BYTES_TO_KILOBYTES(b) (((b) + 1023) / 1024)
66 : :
67 : : static void ExplainOneQuery(Query *query, int cursorOptions,
68 : : IntoClause *into, ExplainState *es,
69 : : ParseState *pstate, ParamListInfo params);
70 : : static void ExplainPrintJIT(ExplainState *es, int jit_flags,
71 : : JitInstrumentation *ji);
72 : : static void ExplainPrintSerialize(ExplainState *es,
73 : : SerializeMetrics *metrics);
74 : : static void report_triggers(ResultRelInfo *rInfo, bool show_relname,
75 : : ExplainState *es);
76 : : static double elapsed_time(instr_time *starttime);
77 : : static bool ExplainPreScanNode(PlanState *planstate, Bitmapset **rels_used);
78 : : static void ExplainNode(PlanState *planstate, List *ancestors,
79 : : const char *relationship, const char *plan_name,
80 : : ExplainState *es);
81 : : static void show_plan_tlist(PlanState *planstate, List *ancestors,
82 : : ExplainState *es);
83 : : static void show_expression(Node *node, const char *qlabel,
84 : : PlanState *planstate, List *ancestors,
85 : : bool useprefix, ExplainState *es);
86 : : static void show_qual(List *qual, const char *qlabel,
87 : : PlanState *planstate, List *ancestors,
88 : : bool useprefix, ExplainState *es);
89 : : static void show_scan_qual(List *qual, const char *qlabel,
90 : : PlanState *planstate, List *ancestors,
91 : : ExplainState *es);
92 : : static void show_upper_qual(List *qual, const char *qlabel,
93 : : PlanState *planstate, List *ancestors,
94 : : ExplainState *es);
95 : : static void show_sort_keys(SortState *sortstate, List *ancestors,
96 : : ExplainState *es);
97 : : static void show_incremental_sort_keys(IncrementalSortState *incrsortstate,
98 : : List *ancestors, ExplainState *es);
99 : : static void show_merge_append_keys(MergeAppendState *mstate, List *ancestors,
100 : : ExplainState *es);
101 : : static void show_agg_keys(AggState *astate, List *ancestors,
102 : : ExplainState *es);
103 : : static void show_grouping_sets(PlanState *planstate, Agg *agg,
104 : : List *ancestors, ExplainState *es);
105 : : static void show_grouping_set_keys(PlanState *planstate,
106 : : Agg *aggnode, Sort *sortnode,
107 : : List *context, bool useprefix,
108 : : List *ancestors, ExplainState *es);
109 : : static void show_group_keys(GroupState *gstate, List *ancestors,
110 : : ExplainState *es);
111 : : static void show_sort_group_keys(PlanState *planstate, const char *qlabel,
112 : : int nkeys, int nPresortedKeys, AttrNumber *keycols,
113 : : Oid *sortOperators, Oid *collations, bool *nullsFirst,
114 : : List *ancestors, ExplainState *es);
115 : : static void show_sortorder_options(StringInfo buf, Node *sortexpr,
116 : : Oid sortOperator, Oid collation, bool nullsFirst);
117 : : static void show_window_def(WindowAggState *planstate,
118 : : List *ancestors, ExplainState *es);
119 : : static void show_window_keys(StringInfo buf, PlanState *planstate,
120 : : int nkeys, AttrNumber *keycols,
121 : : List *ancestors, ExplainState *es);
122 : : static void show_storage_info(char *maxStorageType, int64 maxSpaceUsed,
123 : : ExplainState *es);
124 : : static void show_tablesample(TableSampleClause *tsc, PlanState *planstate,
125 : : List *ancestors, ExplainState *es);
126 : : static void show_sort_info(SortState *sortstate, ExplainState *es);
127 : : static void show_incremental_sort_info(IncrementalSortState *incrsortstate,
128 : : ExplainState *es);
129 : : static void show_hash_info(HashState *hashstate, ExplainState *es);
130 : : static void show_material_info(MaterialState *mstate, ExplainState *es);
131 : : static void show_windowagg_info(WindowAggState *winstate, ExplainState *es);
132 : : static void show_ctescan_info(CteScanState *ctescanstate, ExplainState *es);
133 : : static void show_table_func_scan_info(TableFuncScanState *tscanstate,
134 : : ExplainState *es);
135 : : static void show_recursive_union_info(RecursiveUnionState *rstate,
136 : : ExplainState *es);
137 : : static void show_memoize_info(MemoizeState *mstate, List *ancestors,
138 : : ExplainState *es);
139 : : static void show_hashagg_info(AggState *aggstate, ExplainState *es);
140 : : static void show_indexscan_info(PlanState *planstate, ExplainState *es);
141 : : static void show_tidbitmap_info(BitmapHeapScanState *planstate,
142 : : ExplainState *es);
143 : : static void show_scan_io_usage(ScanState *planstate,
144 : : ExplainState *es);
145 : : static void show_instrumentation_count(const char *qlabel, int which,
146 : : PlanState *planstate, ExplainState *es);
147 : : static void show_foreignscan_info(ForeignScanState *fsstate, ExplainState *es);
148 : : static const char *explain_get_index_name(Oid indexId);
149 : : static bool peek_buffer_usage(ExplainState *es, const BufferUsage *usage);
150 : : static void show_buffer_usage(ExplainState *es, const BufferUsage *usage);
151 : : static void show_wal_usage(ExplainState *es, const WalUsage *usage);
152 : : static void show_memory_counters(ExplainState *es,
153 : : const MemoryContextCounters *mem_counters);
154 : : static void show_result_replacement_info(Result *result, ExplainState *es);
155 : : static void ExplainIndexScanDetails(Oid indexid, ScanDirection indexorderdir,
156 : : ExplainState *es);
157 : : static void ExplainScanTarget(Scan *plan, ExplainState *es);
158 : : static void ExplainModifyTarget(ModifyTable *plan, ExplainState *es);
159 : : static void ExplainTargetRel(Plan *plan, Index rti, ExplainState *es);
160 : : static void show_modifytable_info(ModifyTableState *mtstate, List *ancestors,
161 : : ExplainState *es);
162 : : static void ExplainMemberNodes(PlanState **planstates, int nplans,
163 : : List *ancestors, ExplainState *es);
164 : : static void ExplainMissingMembers(int nplans, int nchildren, ExplainState *es);
165 : : static void ExplainSubPlans(List *plans, List *ancestors,
166 : : const char *relationship, ExplainState *es);
167 : : static void ExplainCustomChildren(CustomScanState *css,
168 : : List *ancestors, ExplainState *es);
169 : : static ExplainWorkersState *ExplainCreateWorkersState(int num_workers);
170 : : static void ExplainOpenWorker(int n, ExplainState *es);
171 : : static void ExplainCloseWorker(int n, ExplainState *es);
172 : : static void ExplainFlushWorkersState(ExplainState *es);
173 : :
174 : :
175 : :
176 : : /*
177 : : * ExplainQuery -
178 : : * execute an EXPLAIN command
179 : : */
180 : : void
2451 peter@eisentraut.org 181 :CBC 17079 : ExplainQuery(ParseState *pstate, ExplainStmt *stmt,
182 : : ParamListInfo params, DestReceiver *dest)
183 : : {
4266 tgl@sss.pgh.pa.us 184 : 17079 : ExplainState *es = NewExplainState();
185 : : TupOutputState *tstate;
1992 bruce@momjian.us 186 : 17079 : JumbleState *jstate = NULL;
187 : : Query *query;
188 : : List *rewritten;
189 : :
190 : : /* Configure the ExplainState based on the provided options */
551 rhaas@postgresql.org 191 : 17079 : ParseExplainOptionList(es, stmt->options, pstate);
192 : :
193 : : /* Extract the query and, if enabled, jumble it */
1992 bruce@momjian.us 194 : 17071 : query = castNode(Query, stmt->query);
1954 alvherre@alvh.no-ip. 195 [ + + ]: 17071 : if (IsQueryIdEnabled())
1180 michael@paquier.xyz 196 : 3860 : jstate = JumbleQuery(query);
197 : :
1992 bruce@momjian.us 198 [ + + ]: 17071 : if (post_parse_analyze_hook)
199 : 3822 : (*post_parse_analyze_hook) (pstate, query, jstate);
200 : :
201 : : /*
202 : : * Parse analysis was done already, but we still have to run the rule
203 : : * rewriter. We do not do AcquireRewriteLocks: we assume the query either
204 : : * came straight from the parser, or suitable locks were acquired by
205 : : * plancache.c.
206 : : */
1920 tgl@sss.pgh.pa.us 207 : 17071 : rewritten = QueryRewrite(castNode(Query, stmt->query));
208 : :
209 : : /* emit opening boilerplate */
4266 210 : 17071 : ExplainBeginOutput(es);
211 : :
7131 212 [ - + ]: 17071 : if (rewritten == NIL)
213 : : {
214 : : /*
215 : : * In the case of an INSTEAD NOTHING, tell at least that. But in
216 : : * non-text format, the output is delimited, so this isn't necessary.
217 : : */
4266 tgl@sss.pgh.pa.us 218 [ # # ]:UBC 0 : if (es->format == EXPLAIN_FORMAT_TEXT)
219 : 0 : appendStringInfoString(es->str, "Query rewrites to nothing\n");
220 : : }
221 : : else
222 : : {
223 : : ListCell *l;
224 : :
225 : : /* Explain every plan */
7131 tgl@sss.pgh.pa.us 226 [ + - + + :CBC 34072 : foreach(l, rewritten)
+ + ]
227 : : {
3450 228 : 17079 : ExplainOneQuery(lfirst_node(Query, l),
229 : : CURSOR_OPT_PARALLEL_OK, NULL, es,
230 : : pstate, params);
231 : :
232 : : /* Separate plans with an appropriate separator */
2624 233 [ + + ]: 17001 : if (lnext(rewritten, l) != NULL)
4266 234 : 8 : ExplainSeparatePlans(es);
235 : : }
236 : : }
237 : :
238 : : /* emit closing boilerplate */
239 : 16993 : ExplainEndOutput(es);
240 [ - + ]: 16993 : Assert(es->indent == 0);
241 : :
242 : : /* output tuples */
2866 andres@anarazel.de 243 : 16993 : tstate = begin_tup_output_tupdesc(dest, ExplainResultDesc(stmt),
244 : : &TTSOpsVirtual);
4266 tgl@sss.pgh.pa.us 245 [ + + ]: 16993 : if (es->format == EXPLAIN_FORMAT_TEXT)
246 : 16798 : do_text_output_multiline(tstate, es->str->data);
247 : : else
248 : 195 : do_text_output_oneline(tstate, es->str->data);
8828 bruce@momjian.us 249 : 16993 : end_tup_output(tstate);
250 : :
4266 tgl@sss.pgh.pa.us 251 : 16993 : pfree(es->str->data);
6265 252 : 16993 : }
253 : :
254 : : /*
255 : : * ExplainResultDesc -
256 : : * construct the result tupledesc for an EXPLAIN
257 : : */
258 : : TupleDesc
8538 259 : 39515 : ExplainResultDesc(ExplainStmt *stmt)
260 : : {
261 : : TupleDesc tupdesc;
262 : : ListCell *lc;
5346 rhaas@postgresql.org 263 : 39515 : Oid result_type = TEXTOID;
264 : :
265 : : /* Check for XML format option */
6250 tgl@sss.pgh.pa.us 266 [ + + + + : 76622 : foreach(lc, stmt->options)
+ + ]
267 : : {
6050 bruce@momjian.us 268 : 37107 : DefElem *opt = (DefElem *) lfirst(lc);
269 : :
6250 tgl@sss.pgh.pa.us 270 [ + + ]: 37107 : if (strcmp(opt->defname, "format") == 0)
271 : : {
6050 bruce@momjian.us 272 : 523 : char *p = defGetString(opt);
273 : :
5346 rhaas@postgresql.org 274 [ + + ]: 523 : if (strcmp(p, "xml") == 0)
275 : 15 : result_type = XMLOID;
276 [ + + ]: 508 : else if (strcmp(p, "json") == 0)
277 : 457 : result_type = JSONOID;
278 : : else
279 : 51 : result_type = TEXTOID;
280 : : /* don't "break", as ExplainQuery will use the last value */
281 : : }
282 : : }
283 : :
284 : : /* Need a tuple descriptor representing a single TEXT or XML column */
2861 andres@anarazel.de 285 : 39515 : tupdesc = CreateTemplateTupleDesc(1);
8538 tgl@sss.pgh.pa.us 286 : 39515 : TupleDescInitEntry(tupdesc, (AttrNumber) 1, "QUERY PLAN",
287 : : result_type, -1, 0);
188 drowley@postgresql.o 288 : 39515 : TupleDescFinalize(tupdesc);
8538 tgl@sss.pgh.pa.us 289 : 39515 : return tupdesc;
290 : : }
291 : :
292 : : /*
293 : : * ExplainOneQuery -
294 : : * print out the execution plan for one Query
295 : : *
296 : : * "into" is NULL unless we are explaining the contents of a CreateTableAsStmt.
297 : : */
298 : : static void
3536 299 : 17188 : ExplainOneQuery(Query *query, int cursorOptions,
300 : : IntoClause *into, ExplainState *es,
301 : : ParseState *pstate, ParamListInfo params)
302 : : {
303 : : /* planner will not cope with utility statements */
9367 304 [ + + ]: 17188 : if (query->commandType == CMD_UTILITY)
305 : : {
692 michael@paquier.xyz 306 : 429 : ExplainOneUtility(query->utilityStmt, into, es, pstate, params);
7131 tgl@sss.pgh.pa.us 307 : 409 : return;
308 : : }
309 : :
310 : : /* if an advisor plugin is present, let it manage things */
7058 311 [ - + ]: 16759 : if (ExplainOneQuery_hook)
3536 tgl@sss.pgh.pa.us 312 :UBC 0 : (*ExplainOneQuery_hook) (query, cursorOptions, into, es,
313 : : pstate->p_sourcetext, params, pstate->p_queryEnv);
314 : : else
923 michael@paquier.xyz 315 :CBC 16759 : standard_ExplainOneQuery(query, cursorOptions, into, es,
316 : : pstate->p_sourcetext, params, pstate->p_queryEnv);
317 : : }
318 : :
319 : : /*
320 : : * standard_ExplainOneQuery -
321 : : * print out the execution plan for one Query, without calling a hook.
322 : : */
323 : : void
324 : 16759 : standard_ExplainOneQuery(Query *query, int cursorOptions,
325 : : IntoClause *into, ExplainState *es,
326 : : const char *queryString, ParamListInfo params,
327 : : QueryEnvironment *queryEnv)
328 : : {
329 : : PlannedStmt *plan;
330 : : instr_time planstart,
331 : : planduration;
332 : : BufferUsage bufusage_start,
333 : : bufusage;
334 : : MemoryContextCounters mem_counters;
335 : 16759 : MemoryContext planner_ctx = NULL;
336 : 16759 : MemoryContext saved_ctx = NULL;
337 : :
338 [ + + ]: 16759 : if (es->memory)
339 : : {
340 : : /*
341 : : * Create a new memory context to measure planner's memory consumption
342 : : * accurately. Note that if the planner were to be modified to use a
343 : : * different memory context type, here we would be changing that to
344 : : * AllocSet, which might be undesirable. However, we don't have a way
345 : : * to create a context of the same type as another, so we pray and
346 : : * hope that this is OK.
347 : : */
348 : 16 : planner_ctx = AllocSetContextCreate(CurrentMemoryContext,
349 : : "explain analyze planner context",
350 : : ALLOCSET_DEFAULT_SIZES);
351 : 16 : saved_ctx = MemoryContextSwitchTo(planner_ctx);
352 : : }
353 : :
354 [ + + ]: 16759 : if (es->buffers)
355 : 1748 : bufusage_start = pgBufferUsage;
356 : 16759 : INSTR_TIME_SET_CURRENT(planstart);
357 : :
358 : : /* plan the query */
347 rhaas@postgresql.org 359 : 16759 : plan = pg_plan_query(query, queryString, cursorOptions, params, es);
360 : :
923 michael@paquier.xyz 361 : 16729 : INSTR_TIME_SET_CURRENT(planduration);
362 : 16729 : INSTR_TIME_SUBTRACT(planduration, planstart);
363 : :
364 [ + + ]: 16729 : if (es->memory)
365 : : {
366 : 16 : MemoryContextSwitchTo(saved_ctx);
367 : 16 : MemoryContextMemConsumed(planner_ctx, &mem_counters);
368 : : }
369 : :
370 : : /* calc differences of buffer counters. */
371 [ + + ]: 16729 : if (es->buffers)
372 : : {
373 : 1748 : memset(&bufusage, 0, sizeof(BufferUsage));
374 : 1748 : BufferUsageAccumDiff(&bufusage, &pgBufferUsage, &bufusage_start);
375 : : }
376 : :
377 : : /* run it (if needed) and produce output */
486 amitlan@postgresql.o 378 : 33458 : ExplainOnePlan(plan, into, es, queryString, params, queryEnv,
923 michael@paquier.xyz 379 [ + + ]: 16729 : &planduration, (es->buffers ? &bufusage : NULL),
380 [ + + ]: 16729 : es->memory ? &mem_counters : NULL);
8631 tgl@sss.pgh.pa.us 381 : 16701 : }
382 : :
383 : : /*
384 : : * ExplainOneUtility -
385 : : * print out the execution plan for one utility statement
386 : : * (In general, utility statements don't have plans, but there are some
387 : : * we treat as special cases)
388 : : *
389 : : * "into" is NULL unless we are explaining the contents of a CreateTableAsStmt.
390 : : *
391 : : * This is exported because it's called back from prepare.c in the
392 : : * EXPLAIN EXECUTE case. In that case, we'll be dealing with a statement
393 : : * that's in the plan cache, so we have to ensure we don't modify it.
394 : : */
395 : : void
5298 396 : 429 : ExplainOneUtility(Node *utilityStmt, IntoClause *into, ExplainState *es,
397 : : ParseState *pstate, ParamListInfo params)
398 : : {
7131 399 [ - + ]: 429 : if (utilityStmt == NULL)
7131 tgl@sss.pgh.pa.us 400 :UBC 0 : return;
401 : :
5298 tgl@sss.pgh.pa.us 402 [ + + ]:CBC 429 : if (IsA(utilityStmt, CreateTableAsStmt))
403 : : {
404 : : /*
405 : : * We have to rewrite the contained SELECT and then pass it back to
406 : : * ExplainOneQuery. Copy to be safe in the EXPLAIN EXECUTE case.
407 : : */
408 : 110 : CreateTableAsStmt *ctas = (CreateTableAsStmt *) utilityStmt;
409 : : Query *ctas_query;
410 : : List *rewritten;
692 michael@paquier.xyz 411 : 110 : JumbleState *jstate = NULL;
412 : :
413 : : /*
414 : : * Check if the relation exists or not. This is done at this stage to
415 : : * avoid query planning or execution.
416 : : */
2090 417 [ + + ]: 110 : if (CreateTableAsRelExists(ctas))
418 : : {
419 [ + + ]: 20 : if (ctas->objtype == OBJECT_TABLE)
420 : 12 : ExplainDummyGroup("CREATE TABLE AS", NULL, es);
421 [ + - ]: 8 : else if (ctas->objtype == OBJECT_MATVIEW)
422 : 8 : ExplainDummyGroup("CREATE MATERIALIZED VIEW", NULL, es);
423 : : else
1957 tgl@sss.pgh.pa.us 424 [ # # ]:UBC 0 : elog(ERROR, "unexpected object type: %d",
425 : : (int) ctas->objtype);
2090 michael@paquier.xyz 426 :CBC 20 : return;
427 : : }
428 : :
692 429 : 70 : ctas_query = castNode(Query, copyObject(ctas->query));
430 [ + + ]: 70 : if (IsQueryIdEnabled())
431 : 25 : jstate = JumbleQuery(ctas_query);
432 [ + + ]: 70 : if (post_parse_analyze_hook)
433 : 19 : (*post_parse_analyze_hook) (pstate, ctas_query, jstate);
434 : 70 : rewritten = QueryRewrite(ctas_query);
4909 tgl@sss.pgh.pa.us 435 [ - + ]: 70 : Assert(list_length(rewritten) == 1);
3450 436 : 70 : ExplainOneQuery(linitial_node(Query, rewritten),
437 : : CURSOR_OPT_PARALLEL_OK, ctas->into, es,
438 : : pstate, params);
439 : : }
3536 440 [ + + ]: 319 : else if (IsA(utilityStmt, DeclareCursorStmt))
441 : : {
442 : : /*
443 : : * Likewise for DECLARE CURSOR.
444 : : *
445 : : * Notice that if you say EXPLAIN ANALYZE DECLARE CURSOR then we'll
446 : : * actually run the query. This is different from pre-8.3 behavior
447 : : * but seems more useful than not running the query. No cursor will
448 : : * be created, however.
449 : : */
450 : 39 : DeclareCursorStmt *dcs = (DeclareCursorStmt *) utilityStmt;
451 : : Query *dcs_query;
452 : : List *rewritten;
692 michael@paquier.xyz 453 : 39 : JumbleState *jstate = NULL;
454 : :
455 : 39 : dcs_query = castNode(Query, copyObject(dcs->query));
456 [ + + ]: 39 : if (IsQueryIdEnabled())
457 : 14 : jstate = JumbleQuery(dcs_query);
458 [ + + ]: 39 : if (post_parse_analyze_hook)
459 : 11 : (*post_parse_analyze_hook) (pstate, dcs_query, jstate);
460 : :
461 : 39 : rewritten = QueryRewrite(dcs_query);
3536 tgl@sss.pgh.pa.us 462 [ - + ]: 39 : Assert(list_length(rewritten) == 1);
3450 463 : 39 : ExplainOneQuery(linitial_node(Query, rewritten),
464 : : dcs->options, NULL, es,
465 : : pstate, params);
466 : : }
5298 467 [ + - ]: 280 : else if (IsA(utilityStmt, ExecuteStmt))
468 : 280 : ExplainExecuteQuery((ExecuteStmt *) utilityStmt, into, es,
469 : : pstate, params);
7131 tgl@sss.pgh.pa.us 470 [ # # ]:UBC 0 : else if (IsA(utilityStmt, NotifyStmt))
471 : : {
6250 472 [ # # ]: 0 : if (es->format == EXPLAIN_FORMAT_TEXT)
473 : 0 : appendStringInfoString(es->str, "NOTIFY\n");
474 : : else
475 : 0 : ExplainDummyGroup("Notify", NULL, es);
476 : : }
477 : : else
478 : : {
479 [ # # ]: 0 : if (es->format == EXPLAIN_FORMAT_TEXT)
480 : 0 : appendStringInfoString(es->str,
481 : : "Utility statements have no plan structure\n");
482 : : else
483 : 0 : ExplainDummyGroup("Utility Statement", NULL, es);
484 : : }
485 : : }
486 : :
487 : : /*
488 : : * ExplainOnePlan -
489 : : * given a planned query, execute it if needed, and then print
490 : : * EXPLAIN output
491 : : *
492 : : * "into" is NULL unless we are explaining the contents of a CreateTableAsStmt,
493 : : * in which case executing the query should result in creating that table.
494 : : *
495 : : * This is exported because it's called back from prepare.c in the
496 : : * EXPLAIN EXECUTE case, and because an index advisor plugin would need
497 : : * to call it.
498 : : */
499 : : void
486 amitlan@postgresql.o 500 :CBC 17009 : ExplainOnePlan(PlannedStmt *plannedstmt, IntoClause *into, ExplainState *es,
501 : : const char *queryString, ParamListInfo params,
502 : : QueryEnvironment *queryEnv, const instr_time *planduration,
503 : : const BufferUsage *bufusage,
504 : : const MemoryContextCounters *mem_counters)
505 : : {
506 : : DestReceiver *dest;
507 : : QueryDesc *queryDesc;
508 : : instr_time starttime;
8631 tgl@sss.pgh.pa.us 509 : 17009 : double totaltime = 0;
510 : : int eflags;
6123 rhaas@postgresql.org 511 : 17009 : int instrument_option = 0;
900 tgl@sss.pgh.pa.us 512 : 17009 : SerializeMetrics serializeMetrics = {0};
513 : :
3536 514 [ - + ]: 17009 : Assert(plannedstmt->commandType != CMD_UTILITY);
515 : :
5339 rhaas@postgresql.org 516 [ + + + + ]: 17009 : if (es->analyze && es->timing)
6123 517 : 1768 : instrument_option |= INSTRUMENT_TIMER;
5339 518 [ + + ]: 15241 : else if (es->analyze)
519 : 526 : instrument_option |= INSTRUMENT_ROWS;
520 : :
6123 521 [ + + ]: 17009 : if (es->buffers)
522 : 1748 : instrument_option |= INSTRUMENT_BUFFERS;
2358 akapila@postgresql.o 523 [ - + ]: 17009 : if (es->wal)
2358 akapila@postgresql.o 524 :UBC 0 : instrument_option |= INSTRUMENT_WAL;
166 tomas.vondra@postgre 525 [ + + ]:CBC 17009 : if (es->io)
526 : 8 : instrument_option |= INSTRUMENT_IO;
527 : :
528 : : /*
529 : : * We always collect timing for the entire statement, even when node-level
530 : : * timing is off, so we don't look at es->timing here. (We could skip
531 : : * this if !es->summary, but it's hardly worth the complication.)
532 : : */
5684 tgl@sss.pgh.pa.us 533 : 17009 : INSTR_TIME_SET_CURRENT(starttime);
534 : :
535 : : /*
536 : : * Use a snapshot with an updated command ID to ensure this query sees
537 : : * results of any previously executed queries.
538 : : */
5683 539 : 17009 : PushCopiedSnapshot(GetActiveSnapshot());
540 : 17009 : UpdateActiveSnapshotCommandId();
541 : :
542 : : /*
543 : : * We discard the output if we have no use for it. If we're explaining
544 : : * CREATE TABLE AS, we'd better use the appropriate tuple receiver, while
545 : : * the SERIALIZE option requires its own tuple receiver. (If you specify
546 : : * SERIALIZE while explaining CREATE TABLE AS, you'll see zeroes for the
547 : : * results, which is appropriate since no data would have gone to the
548 : : * client.)
549 : : */
4909 550 [ + + ]: 17009 : if (into)
551 : 70 : dest = CreateIntoRelDestReceiver(into);
900 552 [ + + ]: 16939 : else if (es->serialize != EXPLAIN_SERIALIZE_NONE)
553 : 16 : dest = CreateExplainSerializeDestReceiver(es);
554 : : else
4909 555 : 16923 : dest = None_Receiver;
556 : :
557 : : /* Create a QueryDesc for the query */
486 amitlan@postgresql.o 558 : 17009 : queryDesc = CreateQueryDesc(plannedstmt, queryString,
559 : : GetActiveSnapshot(), InvalidSnapshot,
560 : : dest, params, queryEnv, instrument_option);
561 : :
562 : : /* Select execution options */
6265 tgl@sss.pgh.pa.us 563 [ + + ]: 17009 : if (es->analyze)
7509 564 : 2294 : eflags = 0; /* default run-to-completion flags */
565 : : else
566 : 14715 : eflags = EXEC_FLAG_EXPLAIN_ONLY;
1276 567 [ + + ]: 17009 : if (es->generic)
568 : 8 : eflags |= EXEC_FLAG_EXPLAIN_GENERIC;
5298 569 [ + + ]: 17009 : if (into)
570 : 70 : eflags |= GetIntoRelEFlags(into);
571 : :
572 : : /* call ExecutorStart to prepare the plan for execution */
486 amitlan@postgresql.o 573 : 17009 : ExecutorStart(queryDesc, eflags);
574 : :
575 : : /* Execute the plan for statistics if asked for */
6265 tgl@sss.pgh.pa.us 576 [ + + ]: 16985 : if (es->analyze)
577 : : {
578 : : ScanDirection dir;
579 : :
580 : : /* EXPLAIN ANALYZE CREATE TABLE AS WITH NO DATA is weird */
5298 581 [ + + + + ]: 2294 : if (into && into->skipData)
582 : 16 : dir = NoMovementScanDirection;
583 : : else
584 : 2278 : dir = ForwardScanDirection;
585 : :
586 : : /* run the plan */
650 587 : 2294 : ExecutorRun(queryDesc, dir, 0);
588 : :
589 : : /* run cleanup too */
5684 590 : 2290 : ExecutorFinish(queryDesc);
591 : :
592 : : /* We can't run ExecutorEnd 'till we're done printing the stats... */
8690 593 : 2290 : totaltime += elapsed_time(&starttime);
594 : : }
595 : :
596 : : /* grab serialization metrics before we destroy the DestReceiver */
900 597 [ + + ]: 16981 : if (es->serialize != EXPLAIN_SERIALIZE_NONE)
598 : 20 : serializeMetrics = GetSerializationMetrics(dest);
599 : :
600 : : /* call the DestReceiver's destroy method even during explain */
601 : 16981 : dest->rDestroy(dest);
602 : :
6250 603 : 16981 : ExplainOpenGroup("Query", NULL, true, es);
604 : :
605 : : /* Create textual dump of plan tree */
6265 606 : 16981 : ExplainPrintPlan(es, queryDesc);
607 : :
608 : : /* Show buffer and/or memory usage in planning */
965 alvherre@alvh.no-ip. 609 [ + + + + ]: 16981 : if (peek_buffer_usage(es, bufusage) || mem_counters)
610 : : {
2360 fujii@postgresql.org 611 : 556 : ExplainOpenGroup("Planning", "Planning", true, es);
612 : :
965 alvherre@alvh.no-ip. 613 [ + + ]: 556 : if (es->format == EXPLAIN_FORMAT_TEXT)
614 : : {
615 : 396 : ExplainIndentText(es);
616 : 396 : appendStringInfoString(es->str, "Planning:\n");
617 : 396 : es->indent++;
618 : : }
619 : :
620 [ + + ]: 556 : if (bufusage)
621 : 540 : show_buffer_usage(es, bufusage);
622 : :
623 [ + + ]: 556 : if (mem_counters)
624 : 20 : show_memory_counters(es, mem_counters);
625 : :
626 [ + + ]: 556 : if (es->format == EXPLAIN_FORMAT_TEXT)
627 : 396 : es->indent--;
628 : :
2221 fujii@postgresql.org 629 : 556 : ExplainCloseGroup("Planning", "Planning", true, es);
630 : : }
631 : :
4358 tgl@sss.pgh.pa.us 632 [ + + + - ]: 16981 : if (es->summary && planduration)
633 : : {
4520 bruce@momjian.us 634 : 1776 : double plantime = INSTR_TIME_GET_DOUBLE(*planduration);
635 : :
3110 andres@anarazel.de 636 : 1776 : ExplainPropertyFloat("Planning Time", "ms", 1000.0 * plantime, 3, es);
637 : : }
638 : :
639 : : /* Print info about runtime of triggers */
6265 tgl@sss.pgh.pa.us 640 [ + + ]: 16981 : if (es->analyze)
4626 alvherre@alvh.no-ip. 641 : 2290 : ExplainPrintTriggers(es, queryDesc);
642 : :
643 : : /*
644 : : * Print info about JITing. Tied to es->costs because we don't want to
645 : : * display this in regression tests, as it'd cause output differences
646 : : * depending on build options. Might want to separate that out from COSTS
647 : : * at a later stage.
648 : : */
2917 andres@anarazel.de 649 [ + + ]: 16981 : if (es->costs)
2909 650 : 6630 : ExplainPrintJITSummary(es, queryDesc);
651 : :
652 : : /* Print info about serialization of output */
900 tgl@sss.pgh.pa.us 653 [ + + ]: 16981 : if (es->serialize != EXPLAIN_SERIALIZE_NONE)
654 : 20 : ExplainPrintSerialize(es, &serializeMetrics);
655 : :
656 : : /* Allow plugins to print additional information */
551 rhaas@postgresql.org 657 [ + + ]: 16981 : if (explain_per_plan_hook)
658 : 3895 : (*explain_per_plan_hook) (plannedstmt, into, es, queryString,
659 : : params, queryEnv);
660 : :
661 : : /*
662 : : * Close down the query and free resources. Include time for this in the
663 : : * total execution time (although it should be pretty minimal).
664 : : */
7854 tgl@sss.pgh.pa.us 665 : 16981 : INSTR_TIME_SET_CURRENT(starttime);
666 : :
8690 667 : 16981 : ExecutorEnd(queryDesc);
668 : :
8680 669 : 16981 : FreeQueryDesc(queryDesc);
670 : :
6705 alvherre@alvh.no-ip. 671 : 16981 : PopActiveSnapshot();
672 : :
673 : : /* We need a CCI just in case query expanded to multiple plans */
6265 tgl@sss.pgh.pa.us 674 [ + + ]: 16981 : if (es->analyze)
8042 675 : 2290 : CommandCounterIncrement();
676 : :
8690 677 : 16981 : totaltime += elapsed_time(&starttime);
678 : :
679 : : /*
680 : : * We only report execution time if we actually ran the query (that is,
681 : : * the user specified ANALYZE), and if summary reporting is enabled (the
682 : : * user can set SUMMARY OFF to not have the timing information included in
683 : : * the output). By default, ANALYZE sets SUMMARY to true.
684 : : */
3483 sfrost@snowman.net 685 [ + + + + ]: 16981 : if (es->summary && es->analyze)
3110 andres@anarazel.de 686 : 1772 : ExplainPropertyFloat("Execution Time", "ms", 1000.0 * totaltime, 3,
687 : : es);
688 : :
6250 tgl@sss.pgh.pa.us 689 : 16981 : ExplainCloseGroup("Query", NULL, true, es);
6514 690 : 16981 : }
691 : :
692 : : /*
693 : : * ExplainPrintSettings -
694 : : * Print summary of modified settings affecting query planning.
695 : : */
696 : : static void
2726 tomas.vondra@postgre 697 : 16992 : ExplainPrintSettings(ExplainState *es)
698 : : {
699 : : int num;
700 : : struct config_generic **gucs;
701 : :
702 : : /* bail out if information about settings not requested */
703 [ + + ]: 16992 : if (!es->settings)
704 : 16984 : return;
705 : :
706 : : /* request an array of relevant settings */
707 : 8 : gucs = get_explain_guc_options(&num);
708 : :
709 [ + + ]: 8 : if (es->format != EXPLAIN_FORMAT_TEXT)
710 : : {
711 : 4 : ExplainOpenGroup("Settings", "Settings", true, es);
712 : :
2429 tgl@sss.pgh.pa.us 713 [ + + ]: 8 : for (int i = 0; i < num; i++)
714 : : {
715 : : char *setting;
2726 tomas.vondra@postgre 716 : 4 : struct config_generic *conf = gucs[i];
717 : :
718 : 4 : setting = GetConfigOptionByName(conf->name, NULL, true);
719 : :
720 : 4 : ExplainPropertyText(conf->name, setting, es);
721 : : }
722 : :
723 : 4 : ExplainCloseGroup("Settings", "Settings", true, es);
724 : : }
725 : : else
726 : : {
727 : : StringInfoData str;
728 : :
729 : : /* In TEXT mode, print nothing if there are no options */
2429 tgl@sss.pgh.pa.us 730 [ - + ]: 4 : if (num <= 0)
2429 tgl@sss.pgh.pa.us 731 :UBC 0 : return;
732 : :
2726 tomas.vondra@postgre 733 :CBC 4 : initStringInfo(&str);
734 : :
2429 tgl@sss.pgh.pa.us 735 [ + + ]: 8 : for (int i = 0; i < num; i++)
736 : : {
737 : : char *setting;
2726 tomas.vondra@postgre 738 : 4 : struct config_generic *conf = gucs[i];
739 : :
740 [ - + ]: 4 : if (i > 0)
2726 tomas.vondra@postgre 741 :UBC 0 : appendStringInfoString(&str, ", ");
742 : :
2726 tomas.vondra@postgre 743 :CBC 4 : setting = GetConfigOptionByName(conf->name, NULL, true);
744 : :
745 [ + - ]: 4 : if (setting)
746 : 4 : appendStringInfo(&str, "%s = '%s'", conf->name, setting);
747 : : else
2726 tomas.vondra@postgre 748 :UBC 0 : appendStringInfo(&str, "%s = NULL", conf->name);
749 : : }
750 : :
2429 tgl@sss.pgh.pa.us 751 :CBC 4 : ExplainPropertyText("Settings", str.data, es);
752 : : }
753 : : }
754 : :
755 : : /*
756 : : * ExplainPrintPlan -
757 : : * convert a QueryDesc's plan tree to text and append it to es->str
758 : : *
759 : : * The caller should have set up the options fields of *es, as well as
760 : : * initializing the output buffer es->str. Also, output formatting state
761 : : * such as the indent level is assumed valid. Plan-tree-specific fields
762 : : * in *es are initialized here.
763 : : *
764 : : * NB: will not work on utility statements
765 : : */
766 : : void
6265 767 : 16992 : ExplainPrintPlan(ExplainState *es, QueryDesc *queryDesc)
768 : : {
5112 769 : 16992 : Bitmapset *rels_used = NULL;
770 : : PlanState *ps;
771 : : ListCell *lc;
772 : :
773 : : /* Set up ExplainState fields associated with this plan tree */
6514 774 [ - + ]: 16992 : Assert(queryDesc->plannedstmt != NULL);
6265 775 : 16992 : es->pstmt = queryDesc->plannedstmt;
776 : 16992 : es->rtable = queryDesc->plannedstmt->rtable;
5112 777 : 16992 : ExplainPreScanNode(queryDesc->planstate, &rels_used);
778 : 16992 : es->rtable_names = select_rtable_names_for_explain(es->rtable, rels_used);
2475 779 : 16992 : es->deparse_cxt = deparse_context_for_plan_tree(queryDesc->plannedstmt,
780 : : es->rtable_names);
3723 781 : 16992 : es->printed_subplans = NULL;
740 rguo@postgresql.org 782 : 16992 : es->rtable_size = list_length(es->rtable);
783 [ + - + + : 61719 : foreach(lc, es->rtable)
+ + ]
784 : : {
785 : 46111 : RangeTblEntry *rte = lfirst_node(RangeTblEntry, lc);
786 : :
787 [ + + ]: 46111 : if (rte->rtekind == RTE_GROUP)
788 : : {
789 : 1384 : es->rtable_size--;
790 : 1384 : break;
791 : : }
792 : : }
793 : :
794 : : /*
795 : : * Sometimes we mark a Gather node as "invisible", which means that it's
796 : : * not to be displayed in EXPLAIN output. The purpose of this is to allow
797 : : * running regression tests with debug_parallel_query=regress to get the
798 : : * same results as running the same tests with debug_parallel_query=off.
799 : : * Such marking is currently only supported on a Gather at the top of the
800 : : * plan. We skip that node, and we must also hide per-worker detail data
801 : : * further down in the plan tree.
802 : : */
3878 rhaas@postgresql.org 803 : 16992 : ps = queryDesc->planstate;
2318 tgl@sss.pgh.pa.us 804 [ + + + + ]: 16992 : if (IsA(ps, GatherState) && ((Gather *) ps->plan)->invisible)
805 : : {
3878 rhaas@postgresql.org 806 :GBC 1 : ps = outerPlanState(ps);
2470 tgl@sss.pgh.pa.us 807 : 1 : es->hide_workers = true;
808 : : }
3878 rhaas@postgresql.org 809 :CBC 16992 : ExplainNode(ps, NIL, NULL, NULL, es);
810 : :
811 : : /*
812 : : * If requested, include information about GUC parameters with values that
813 : : * don't match the built-in defaults.
814 : : */
2726 tomas.vondra@postgre 815 : 16992 : ExplainPrintSettings(es);
816 : :
817 : : /*
818 : : * COMPUTE_QUERY_ID_REGRESS means COMPUTE_QUERY_ID_AUTO, but we don't show
819 : : * the queryid in any of the EXPLAIN plans to keep stable the results
820 : : * generated by regression test suites.
821 : : */
478 drowley@postgresql.o 822 [ + + + + ]: 16992 : if (es->verbose && queryDesc->plannedstmt->queryId != INT64CONST(0) &&
1333 michael@paquier.xyz 823 [ + + ]: 393 : compute_query_id != COMPUTE_QUERY_ID_REGRESS)
824 : : {
478 drowley@postgresql.o 825 : 14 : ExplainPropertyInteger("Query Identifier", NULL,
1333 michael@paquier.xyz 826 : 14 : queryDesc->plannedstmt->queryId, es);
827 : : }
11030 scrappy@hub.org 828 : 16992 : }
829 : :
830 : : /*
831 : : * ExplainPrintTriggers -
832 : : * convert a QueryDesc's trigger statistics to text and append it to
833 : : * es->str
834 : : *
835 : : * The caller should have set up the options fields of *es, as well as
836 : : * initializing the output buffer es->str. Other fields in *es are
837 : : * initialized here.
838 : : */
839 : : void
4626 alvherre@alvh.no-ip. 840 : 2290 : ExplainPrintTriggers(ExplainState *es, QueryDesc *queryDesc)
841 : : {
842 : : ResultRelInfo *rInfo;
843 : : bool show_relname;
844 : : List *resultrels;
845 : : List *routerels;
846 : : List *targrels;
847 : : ListCell *l;
848 : :
2168 heikki.linnakangas@i 849 : 2290 : resultrels = queryDesc->estate->es_opened_result_relations;
3146 rhaas@postgresql.org 850 : 2290 : routerels = queryDesc->estate->es_tuple_routing_result_relations;
851 : 2290 : targrels = queryDesc->estate->es_trig_target_relations;
852 : :
4626 alvherre@alvh.no-ip. 853 : 2290 : ExplainOpenGroup("Triggers", "Triggers", false, es);
854 : :
2168 heikki.linnakangas@i 855 [ + - ]: 4571 : show_relname = (list_length(resultrels) > 1 ||
3146 rhaas@postgresql.org 856 [ + + - + ]: 4571 : routerels != NIL || targrels != NIL);
2168 heikki.linnakangas@i 857 [ + + + + : 2368 : foreach(l, resultrels)
+ + ]
858 : : {
859 : 78 : rInfo = (ResultRelInfo *) lfirst(l);
3320 rhaas@postgresql.org 860 : 78 : report_triggers(rInfo, show_relname, es);
861 : : }
862 : :
3146 863 [ - + - - : 2290 : foreach(l, routerels)
- + ]
864 : : {
3320 rhaas@postgresql.org 865 :UBC 0 : rInfo = (ResultRelInfo *) lfirst(l);
866 : 0 : report_triggers(rInfo, show_relname, es);
867 : : }
868 : :
4626 alvherre@alvh.no-ip. 869 [ - + - - :CBC 2290 : foreach(l, targrels)
- + ]
870 : : {
4626 alvherre@alvh.no-ip. 871 :UBC 0 : rInfo = (ResultRelInfo *) lfirst(l);
872 : 0 : report_triggers(rInfo, show_relname, es);
873 : : }
874 : :
4626 alvherre@alvh.no-ip. 875 :CBC 2290 : ExplainCloseGroup("Triggers", "Triggers", false, es);
876 : 2290 : }
877 : :
878 : : /*
879 : : * ExplainPrintJITSummary -
880 : : * Print summarized JIT instrumentation from leader and workers
881 : : */
882 : : void
2909 andres@anarazel.de 883 : 6641 : ExplainPrintJITSummary(ExplainState *es, QueryDesc *queryDesc)
884 : : {
885 : 6641 : JitInstrumentation ji = {0};
886 : :
887 [ + - ]: 6641 : if (!(queryDesc->estate->es_jit_flags & PGJIT_PERFORM))
888 : 6641 : return;
889 : :
890 : : /*
891 : : * Work with a copy instead of modifying the leader state, since this
892 : : * function may be called twice
893 : : */
2909 andres@anarazel.de 894 [ # # ]:UBC 0 : if (queryDesc->estate->es_jit)
895 : 0 : InstrJitAgg(&ji, &queryDesc->estate->es_jit->instr);
896 : :
897 : : /* If this process has done JIT in parallel workers, merge stats */
898 [ # # ]: 0 : if (queryDesc->estate->es_jit_worker_instr)
899 : 0 : InstrJitAgg(&ji, queryDesc->estate->es_jit_worker_instr);
900 : :
2430 tgl@sss.pgh.pa.us 901 : 0 : ExplainPrintJIT(es, queryDesc->estate->es_jit_flags, &ji);
902 : : }
903 : :
904 : : /*
905 : : * ExplainPrintJIT -
906 : : * Append information about JITing to es->str.
907 : : */
908 : : static void
909 : 0 : ExplainPrintJIT(ExplainState *es, int jit_flags, JitInstrumentation *ji)
910 : : {
911 : : instr_time total_time;
912 : :
913 : : /* don't print information if no JITing happened */
2917 andres@anarazel.de 914 [ # # # # ]: 0 : if (!ji || ji->created_functions == 0)
915 : 0 : return;
916 : :
917 : : /* calculate total time */
2918 918 : 0 : INSTR_TIME_SET_ZERO(total_time);
919 : : /* don't add deform_counter, it's included in generation_counter */
2917 920 : 0 : INSTR_TIME_ADD(total_time, ji->generation_counter);
921 : 0 : INSTR_TIME_ADD(total_time, ji->inlining_counter);
922 : 0 : INSTR_TIME_ADD(total_time, ji->optimization_counter);
923 : 0 : INSTR_TIME_ADD(total_time, ji->emission_counter);
924 : :
3098 925 : 0 : ExplainOpenGroup("JIT", "JIT", true, es);
926 : :
927 : : /* for higher density, open code the text output format */
928 [ # # ]: 0 : if (es->format == EXPLAIN_FORMAT_TEXT)
929 : : {
2430 tgl@sss.pgh.pa.us 930 : 0 : ExplainIndentText(es);
931 : 0 : appendStringInfoString(es->str, "JIT:\n");
932 : 0 : es->indent++;
933 : :
2917 andres@anarazel.de 934 : 0 : ExplainPropertyInteger("Functions", NULL, ji->created_functions, es);
935 : :
2430 tgl@sss.pgh.pa.us 936 : 0 : ExplainIndentText(es);
2918 andres@anarazel.de 937 : 0 : appendStringInfo(es->str, "Options: %s %s, %s %s, %s %s, %s %s\n",
2917 938 [ # # ]: 0 : "Inlining", jit_flags & PGJIT_INLINE ? "true" : "false",
939 [ # # ]: 0 : "Optimization", jit_flags & PGJIT_OPT3 ? "true" : "false",
940 [ # # ]: 0 : "Expressions", jit_flags & PGJIT_EXPR ? "true" : "false",
941 [ # # ]: 0 : "Deforming", jit_flags & PGJIT_DEFORM ? "true" : "false");
942 : :
2918 943 [ # # # # ]: 0 : if (es->analyze && es->timing)
944 : : {
2430 tgl@sss.pgh.pa.us 945 : 0 : ExplainIndentText(es);
2918 andres@anarazel.de 946 : 0 : appendStringInfo(es->str,
947 : : "Timing: %s %.3f ms (%s %.3f ms), %s %.3f ms, %s %.3f ms, %s %.3f ms, %s %.3f ms\n",
2917 948 : 0 : "Generation", 1000.0 * INSTR_TIME_GET_DOUBLE(ji->generation_counter),
1108 dgustafsson@postgres 949 : 0 : "Deform", 1000.0 * INSTR_TIME_GET_DOUBLE(ji->deform_counter),
2917 andres@anarazel.de 950 : 0 : "Inlining", 1000.0 * INSTR_TIME_GET_DOUBLE(ji->inlining_counter),
951 : 0 : "Optimization", 1000.0 * INSTR_TIME_GET_DOUBLE(ji->optimization_counter),
952 : 0 : "Emission", 1000.0 * INSTR_TIME_GET_DOUBLE(ji->emission_counter),
2918 953 : 0 : "Total", 1000.0 * INSTR_TIME_GET_DOUBLE(total_time));
954 : : }
955 : :
2430 tgl@sss.pgh.pa.us 956 : 0 : es->indent--;
957 : : }
958 : : else
959 : : {
2917 andres@anarazel.de 960 : 0 : ExplainPropertyInteger("Functions", NULL, ji->created_functions, es);
961 : :
2918 962 : 0 : ExplainOpenGroup("Options", "Options", true, es);
2917 963 : 0 : ExplainPropertyBool("Inlining", jit_flags & PGJIT_INLINE, es);
964 : 0 : ExplainPropertyBool("Optimization", jit_flags & PGJIT_OPT3, es);
965 : 0 : ExplainPropertyBool("Expressions", jit_flags & PGJIT_EXPR, es);
966 : 0 : ExplainPropertyBool("Deforming", jit_flags & PGJIT_DEFORM, es);
2918 967 : 0 : ExplainCloseGroup("Options", "Options", true, es);
968 : :
969 [ # # # # ]: 0 : if (es->analyze && es->timing)
970 : : {
971 : 0 : ExplainOpenGroup("Timing", "Timing", true, es);
972 : :
1108 dgustafsson@postgres 973 : 0 : ExplainOpenGroup("Generation", "Generation", true, es);
974 : 0 : ExplainPropertyFloat("Deform", "ms",
975 : 0 : 1000.0 * INSTR_TIME_GET_DOUBLE(ji->deform_counter),
976 : : 3, es);
977 : 0 : ExplainPropertyFloat("Total", "ms",
2917 andres@anarazel.de 978 : 0 : 1000.0 * INSTR_TIME_GET_DOUBLE(ji->generation_counter),
979 : : 3, es);
1108 dgustafsson@postgres 980 : 0 : ExplainCloseGroup("Generation", "Generation", true, es);
981 : :
2918 andres@anarazel.de 982 : 0 : ExplainPropertyFloat("Inlining", "ms",
2917 983 : 0 : 1000.0 * INSTR_TIME_GET_DOUBLE(ji->inlining_counter),
984 : : 3, es);
2918 985 : 0 : ExplainPropertyFloat("Optimization", "ms",
2917 986 : 0 : 1000.0 * INSTR_TIME_GET_DOUBLE(ji->optimization_counter),
987 : : 3, es);
2918 988 : 0 : ExplainPropertyFloat("Emission", "ms",
2917 989 : 0 : 1000.0 * INSTR_TIME_GET_DOUBLE(ji->emission_counter),
990 : : 3, es);
2918 991 : 0 : ExplainPropertyFloat("Total", "ms",
992 : 0 : 1000.0 * INSTR_TIME_GET_DOUBLE(total_time),
993 : : 3, es);
994 : :
995 : 0 : ExplainCloseGroup("Timing", "Timing", true, es);
996 : : }
997 : : }
998 : :
999 : 0 : ExplainCloseGroup("JIT", "JIT", true, es);
1000 : : }
1001 : :
1002 : : /*
1003 : : * ExplainPrintSerialize -
1004 : : * Append information about query output volume to es->str.
1005 : : */
1006 : : static void
900 tgl@sss.pgh.pa.us 1007 :CBC 20 : ExplainPrintSerialize(ExplainState *es, SerializeMetrics *metrics)
1008 : : {
1009 : : const char *format;
1010 : :
1011 : : /* We shouldn't get called for EXPLAIN_SERIALIZE_NONE */
1012 [ + + ]: 20 : if (es->serialize == EXPLAIN_SERIALIZE_TEXT)
1013 : 16 : format = "text";
1014 : : else
1015 : : {
1016 [ - + ]: 4 : Assert(es->serialize == EXPLAIN_SERIALIZE_BINARY);
1017 : 4 : format = "binary";
1018 : : }
1019 : :
1020 : 20 : ExplainOpenGroup("Serialization", "Serialization", true, es);
1021 : :
1022 [ + + ]: 20 : if (es->format == EXPLAIN_FORMAT_TEXT)
1023 : : {
1024 : 16 : ExplainIndentText(es);
1025 [ + + ]: 16 : if (es->timing)
894 peter@eisentraut.org 1026 : 24 : appendStringInfo(es->str, "Serialization: time=%.3f ms output=" UINT64_FORMAT "kB format=%s\n",
900 tgl@sss.pgh.pa.us 1027 : 12 : 1000.0 * INSTR_TIME_GET_DOUBLE(metrics->timeSpent),
857 drowley@postgresql.o 1028 : 12 : BYTES_TO_KILOBYTES(metrics->bytesSent),
1029 : : format);
1030 : : else
894 peter@eisentraut.org 1031 : 4 : appendStringInfo(es->str, "Serialization: output=" UINT64_FORMAT "kB format=%s\n",
857 drowley@postgresql.o 1032 : 4 : BYTES_TO_KILOBYTES(metrics->bytesSent),
1033 : : format);
1034 : :
900 tgl@sss.pgh.pa.us 1035 [ + + - + ]: 16 : if (es->buffers && peek_buffer_usage(es, &metrics->bufferUsage))
1036 : : {
900 tgl@sss.pgh.pa.us 1037 :UBC 0 : es->indent++;
1038 : 0 : show_buffer_usage(es, &metrics->bufferUsage);
1039 : 0 : es->indent--;
1040 : : }
1041 : : }
1042 : : else
1043 : : {
900 tgl@sss.pgh.pa.us 1044 [ + - ]:CBC 4 : if (es->timing)
1045 : 4 : ExplainPropertyFloat("Time", "ms",
1046 : 4 : 1000.0 * INSTR_TIME_GET_DOUBLE(metrics->timeSpent),
1047 : : 3, es);
1048 : 4 : ExplainPropertyUInteger("Output Volume", "kB",
857 drowley@postgresql.o 1049 : 4 : BYTES_TO_KILOBYTES(metrics->bytesSent), es);
900 tgl@sss.pgh.pa.us 1050 : 4 : ExplainPropertyText("Format", format, es);
1051 [ + - ]: 4 : if (es->buffers)
1052 : 4 : show_buffer_usage(es, &metrics->bufferUsage);
1053 : : }
1054 : :
1055 : 20 : ExplainCloseGroup("Serialization", "Serialization", true, es);
1056 : 20 : }
1057 : :
1058 : : /*
1059 : : * ExplainQueryText -
1060 : : * add a "Query Text" node that contains the actual text of the query
1061 : : *
1062 : : * The caller should have set up the options fields of *es, as well as
1063 : : * initializing the output buffer es->str.
1064 : : *
1065 : : */
1066 : : void
6060 andrew@dunslane.net 1067 : 11 : ExplainQueryText(ExplainState *es, QueryDesc *queryDesc)
1068 : : {
1069 [ + - ]: 11 : if (queryDesc->sourceText)
1070 : 11 : ExplainPropertyText("Query Text", queryDesc->sourceText, es);
1071 : 11 : }
1072 : :
1073 : : /*
1074 : : * ExplainQueryParameters -
1075 : : * add a "Query Parameters" node that describes the parameters of the query
1076 : : *
1077 : : * The caller should have set up the options fields of *es, as well as
1078 : : * initializing the output buffer es->str.
1079 : : *
1080 : : */
1081 : : void
1537 michael@paquier.xyz 1082 : 11 : ExplainQueryParameters(ExplainState *es, ParamListInfo params, int maxlen)
1083 : : {
1084 : : char *str;
1085 : :
1086 : : /* This check is consistent with errdetail_params() */
1087 [ + + + - : 11 : if (params == NULL || params->numParams <= 0 || maxlen == 0)
+ + ]
1088 : 8 : return;
1089 : :
1090 : 3 : str = BuildParamLogString(params, NULL, maxlen);
1091 [ + - + - ]: 3 : if (str && str[0] != '\0')
1092 : 3 : ExplainPropertyText("Query Parameters", str, es);
1093 : : }
1094 : :
1095 : : /*
1096 : : * report_triggers -
1097 : : * report execution stats for a single relation's triggers
1098 : : */
1099 : : static void
6250 tgl@sss.pgh.pa.us 1100 : 78 : report_triggers(ResultRelInfo *rInfo, bool show_relname, ExplainState *es)
1101 : : {
1102 : : int nt;
1103 : :
6976 1104 [ - + - - ]: 78 : if (!rInfo->ri_TrigDesc || !rInfo->ri_TrigInstrument)
1105 : 78 : return;
6976 tgl@sss.pgh.pa.us 1106 [ # # ]:UBC 0 : for (nt = 0; nt < rInfo->ri_TrigDesc->numtriggers; nt++)
1107 : : {
1108 : 0 : Trigger *trig = rInfo->ri_TrigDesc->triggers + nt;
168 andres@anarazel.de 1109 : 0 : TriggerInstrumentation *tginstr = rInfo->ri_TrigInstrument + nt;
1110 : : char *relname;
6250 tgl@sss.pgh.pa.us 1111 : 0 : char *conname = NULL;
1112 : :
1113 : : /*
1114 : : * We ignore triggers that were never invoked; they likely aren't
1115 : : * relevant to the current query type.
1116 : : */
168 andres@anarazel.de 1117 [ # # ]: 0 : if (tginstr->firings == 0)
6976 tgl@sss.pgh.pa.us 1118 : 0 : continue;
1119 : :
6250 1120 : 0 : ExplainOpenGroup("Trigger", NULL, true, es);
1121 : :
1122 : 0 : relname = RelationGetRelationName(rInfo->ri_RelationDesc);
1123 [ # # ]: 0 : if (OidIsValid(trig->tgconstraint))
1124 : 0 : conname = get_constraint_name(trig->tgconstraint);
1125 : :
1126 : : /*
1127 : : * In text format, we avoid printing both the trigger name and the
1128 : : * constraint name unless VERBOSE is specified. In non-text formats
1129 : : * we just print everything.
1130 : : */
1131 [ # # ]: 0 : if (es->format == EXPLAIN_FORMAT_TEXT)
1132 : : {
1133 [ # # # # ]: 0 : if (es->verbose || conname == NULL)
1134 : 0 : appendStringInfo(es->str, "Trigger %s", trig->tgname);
1135 : : else
1136 : 0 : appendStringInfoString(es->str, "Trigger");
1137 [ # # ]: 0 : if (conname)
1138 : 0 : appendStringInfo(es->str, " for constraint %s", conname);
1139 [ # # ]: 0 : if (show_relname)
1140 : 0 : appendStringInfo(es->str, " on %s", relname);
3691 1141 [ # # ]: 0 : if (es->timing)
168 andres@anarazel.de 1142 : 0 : appendStringInfo(es->str, ": time=%.3f calls=%" PRId64 "\n",
1143 : 0 : INSTR_TIME_GET_MILLISEC(tginstr->instr.total),
1144 : : tginstr->firings);
1145 : : else
1146 : 0 : appendStringInfo(es->str, ": calls=%" PRId64 "\n",
1147 : : tginstr->firings);
1148 : : }
1149 : : else
1150 : : {
6250 tgl@sss.pgh.pa.us 1151 : 0 : ExplainPropertyText("Trigger Name", trig->tgname, es);
1152 [ # # ]: 0 : if (conname)
1153 : 0 : ExplainPropertyText("Constraint Name", conname, es);
1154 : 0 : ExplainPropertyText("Relation", relname, es);
3691 1155 [ # # ]: 0 : if (es->timing)
254 andres@anarazel.de 1156 : 0 : ExplainPropertyFloat("Time", "ms",
168 1157 : 0 : INSTR_TIME_GET_MILLISEC(tginstr->instr.total), 3,
1158 : : es);
1159 : 0 : ExplainPropertyInteger("Calls", NULL, tginstr->firings, es);
1160 : : }
1161 : :
6250 tgl@sss.pgh.pa.us 1162 [ # # ]: 0 : if (conname)
1163 : 0 : pfree(conname);
1164 : :
1165 : 0 : ExplainCloseGroup("Trigger", NULL, true, es);
1166 : : }
1167 : : }
1168 : :
1169 : : /* Compute elapsed time in seconds since given timestamp */
1170 : : static double
7827 tgl@sss.pgh.pa.us 1171 :CBC 19271 : elapsed_time(instr_time *starttime)
1172 : : {
1173 : : instr_time endtime;
1174 : :
7854 1175 : 19271 : INSTR_TIME_SET_CURRENT(endtime);
6703 1176 : 19271 : INSTR_TIME_SUBTRACT(endtime, *starttime);
7854 1177 : 19271 : return INSTR_TIME_GET_DOUBLE(endtime);
1178 : : }
1179 : :
1180 : : /*
1181 : : * ExplainPreScanNode -
1182 : : * Prescan the planstate tree to identify which RTEs are referenced
1183 : : *
1184 : : * Adds the relid of each referenced RTE to *rels_used. The result controls
1185 : : * which RTEs are assigned aliases by select_rtable_names_for_explain.
1186 : : * This ensures that we don't confusingly assign un-suffixed aliases to RTEs
1187 : : * that never appear in the EXPLAIN output (such as inheritance parents).
1188 : : */
1189 : : static bool
5112 1190 : 61779 : ExplainPreScanNode(PlanState *planstate, Bitmapset **rels_used)
1191 : : {
1192 : 61779 : Plan *plan = planstate->plan;
1193 : :
1194 [ + + + + : 61779 : switch (nodeTag(plan))
+ + + + ]
1195 : : {
1196 : 28445 : case T_SeqScan:
1197 : : case T_SampleScan:
1198 : : case T_IndexScan:
1199 : : case T_IndexOnlyScan:
1200 : : case T_BitmapHeapScan:
1201 : : case T_TidScan:
1202 : : case T_TidRangeScan:
1203 : : case T_SubqueryScan:
1204 : : case T_FunctionScan:
1205 : : case T_TableFuncScan:
1206 : : case T_ValuesScan:
1207 : : case T_CteScan:
1208 : : case T_NamedTuplestoreScan:
1209 : : case T_WorkTableScan:
1210 : 56890 : *rels_used = bms_add_member(*rels_used,
1211 : 28445 : ((Scan *) plan)->scanrelid);
1212 : 28445 : break;
4160 rhaas@postgresql.org 1213 : 471 : case T_ForeignScan:
1214 : 942 : *rels_used = bms_add_members(*rels_used,
1329 tgl@sss.pgh.pa.us 1215 : 471 : ((ForeignScan *) plan)->fs_base_relids);
4160 rhaas@postgresql.org 1216 : 471 : break;
4160 rhaas@postgresql.org 1217 :GBC 5 : case T_CustomScan:
1218 : 10 : *rels_used = bms_add_members(*rels_used,
3378 tgl@sss.pgh.pa.us 1219 : 5 : ((CustomScan *) plan)->custom_relids);
4160 rhaas@postgresql.org 1220 : 5 : break;
5112 tgl@sss.pgh.pa.us 1221 :CBC 716 : case T_ModifyTable:
1222 : 1432 : *rels_used = bms_add_member(*rels_used,
3378 1223 : 716 : ((ModifyTable *) plan)->nominalRelation);
4153 andres@anarazel.de 1224 [ + + ]: 716 : if (((ModifyTable *) plan)->exclRelRTI)
1225 : 82 : *rels_used = bms_add_member(*rels_used,
3378 tgl@sss.pgh.pa.us 1226 : 82 : ((ModifyTable *) plan)->exclRelRTI);
1227 : : /* Ensure Vars used in RETURNING will have refnames */
486 1228 [ + + ]: 716 : if (plan->targetlist)
1229 : 177 : *rels_used = bms_add_member(*rels_used,
1230 : 177 : linitial_int(((ModifyTable *) plan)->resultRelations));
5112 1231 : 716 : break;
2475 1232 : 2462 : case T_Append:
1233 : 4924 : *rels_used = bms_add_members(*rels_used,
1234 : 2462 : ((Append *) plan)->apprelids);
1235 : 2462 : break;
1236 : 230 : case T_MergeAppend:
1237 : 460 : *rels_used = bms_add_members(*rels_used,
1238 : 230 : ((MergeAppend *) plan)->apprelids);
1239 : 230 : break;
362 rhaas@postgresql.org 1240 : 2189 : case T_Result:
1241 : 4378 : *rels_used = bms_add_members(*rels_used,
1242 : 2189 : ((Result *) plan)->relids);
1243 : 2189 : break;
5112 tgl@sss.pgh.pa.us 1244 : 27261 : default:
1245 : 27261 : break;
1246 : : }
1247 : :
4021 rhaas@postgresql.org 1248 : 61779 : return planstate_tree_walker(planstate, ExplainPreScanNode, rels_used);
1249 : : }
1250 : :
1251 : : /*
1252 : : * plan_is_disabled
1253 : : * Checks if the given plan node type was disabled during query planning.
1254 : : * This is evident by the disabled_nodes field being higher than the sum of
1255 : : * the disabled_nodes field from the plan's children.
1256 : : */
1257 : : static bool
709 drowley@postgresql.o 1258 : 61658 : plan_is_disabled(Plan *plan)
1259 : : {
1260 : : int child_disabled_nodes;
1261 : :
1262 : : /* The node is certainly not disabled if this is zero */
1263 [ + + ]: 61658 : if (plan->disabled_nodes == 0)
1264 : 61462 : return false;
1265 : :
1266 : 196 : child_disabled_nodes = 0;
1267 : :
1268 : : /*
1269 : : * Handle special nodes first. Children of BitmapOrs and BitmapAnds can't
1270 : : * be disabled, so no need to handle those specifically.
1271 : : */
1272 [ + + ]: 196 : if (IsA(plan, Append))
1273 : : {
1274 : : ListCell *lc;
1275 : 2 : Append *aplan = (Append *) plan;
1276 : :
1277 : : /*
1278 : : * Sum the Append childrens' disabled_nodes. This purposefully
1279 : : * includes any run-time pruned children. Ignoring those could give
1280 : : * us the incorrect number of disabled nodes.
1281 : : */
1282 [ + - + + : 7 : foreach(lc, aplan->appendplans)
+ + ]
1283 : : {
1284 : 5 : Plan *subplan = lfirst(lc);
1285 : :
1286 : 5 : child_disabled_nodes += subplan->disabled_nodes;
1287 : : }
1288 : : }
1289 [ + + ]: 194 : else if (IsA(plan, MergeAppend))
1290 : : {
1291 : : ListCell *lc;
1292 : 4 : MergeAppend *maplan = (MergeAppend *) plan;
1293 : :
1294 : : /*
1295 : : * Sum the MergeAppend childrens' disabled_nodes. This purposefully
1296 : : * includes any run-time pruned children. Ignoring those could give
1297 : : * us the incorrect number of disabled nodes.
1298 : : */
1299 [ + - + + : 20 : foreach(lc, maplan->mergeplans)
+ + ]
1300 : : {
1301 : 16 : Plan *subplan = lfirst(lc);
1302 : :
1303 : 16 : child_disabled_nodes += subplan->disabled_nodes;
1304 : : }
1305 : : }
1306 [ - + ]: 190 : else if (IsA(plan, SubqueryScan))
709 drowley@postgresql.o 1307 :UBC 0 : child_disabled_nodes += ((SubqueryScan *) plan)->subplan->disabled_nodes;
709 drowley@postgresql.o 1308 [ - + ]:CBC 190 : else if (IsA(plan, CustomScan))
1309 : : {
1310 : : ListCell *lc;
709 drowley@postgresql.o 1311 :UBC 0 : CustomScan *cplan = (CustomScan *) plan;
1312 : :
1313 [ # # # # : 0 : foreach(lc, cplan->custom_plans)
# # ]
1314 : : {
1315 : 0 : Plan *subplan = lfirst(lc);
1316 : :
1317 : 0 : child_disabled_nodes += subplan->disabled_nodes;
1318 : : }
1319 : : }
1320 : : else
1321 : : {
1322 : : /*
1323 : : * Else, sum up disabled_nodes from the plan's inner and outer side.
1324 : : */
709 drowley@postgresql.o 1325 [ + + ]:CBC 190 : if (outerPlan(plan))
1326 : 122 : child_disabled_nodes += outerPlan(plan)->disabled_nodes;
1327 [ + + ]: 190 : if (innerPlan(plan))
1328 : 43 : child_disabled_nodes += innerPlan(plan)->disabled_nodes;
1329 : : }
1330 : :
1331 : : /*
1332 : : * It's disabled if the plan's disabled_nodes is higher than the sum of
1333 : : * its child's plan disabled_nodes.
1334 : : */
1335 [ + + ]: 196 : if (plan->disabled_nodes > child_disabled_nodes)
1336 : 89 : return true;
1337 : :
1338 : 107 : return false;
1339 : : }
1340 : :
1341 : : /*
1342 : : * ExplainNode -
1343 : : * Appends a description of a plan tree to es->str
1344 : : *
1345 : : * planstate points to the executor state node for the current plan node.
1346 : : * We need to work from a PlanState node, not just a Plan node, in order to
1347 : : * get at the instrumentation data (if any) as well as the list of subplans.
1348 : : *
1349 : : * ancestors is a list of parent Plan and SubPlan nodes, most-closely-nested
1350 : : * first. These are needed in order to interpret PARAM_EXEC Params.
1351 : : *
1352 : : * relationship describes the relationship of this plan node to its parent
1353 : : * (eg, "Outer", "Inner"); it can be null at top level. plan_name is an
1354 : : * optional name to be attached to the node.
1355 : : *
1356 : : * In text format, es->indent is controlled in this function since we only
1357 : : * want it to change at plan-node boundaries (but a few subroutines will
1358 : : * transiently increment it). In non-text formats, es->indent corresponds
1359 : : * to the nesting depth of logical output groups, and therefore is controlled
1360 : : * by ExplainOpenGroup/ExplainCloseGroup.
1361 : : */
1362 : : static void
5913 tgl@sss.pgh.pa.us 1363 : 61658 : ExplainNode(PlanState *planstate, List *ancestors,
1364 : : const char *relationship, const char *plan_name,
1365 : : ExplainState *es)
1366 : : {
1367 : 61658 : Plan *plan = planstate->plan;
1368 : : const char *pname; /* node type name for text output */
1369 : : const char *sname; /* node type name for non-text output */
6250 1370 : 61658 : const char *strategy = NULL;
3735 1371 : 61658 : const char *partialmode = NULL;
6189 1372 : 61658 : const char *operation = NULL;
4335 rhaas@postgresql.org 1373 : 61658 : const char *custom_name = NULL;
2430 tgl@sss.pgh.pa.us 1374 : 61658 : ExplainWorkersState *save_workers_state = es->workers_state;
6250 1375 : 61658 : int save_indent = es->indent;
1376 : : bool haschildren;
1377 : : bool isdisabled;
1378 : :
1379 : : /*
1380 : : * Prepare per-worker output buffers, if needed. We'll append the data in
1381 : : * these to the main output string further down.
1382 : : */
2430 1383 [ + + + - : 61658 : if (planstate->worker_instrument && es->analyze && !es->hide_workers)
+ - ]
1384 : 684 : es->workers_state = ExplainCreateWorkersState(planstate->worker_instrument->num_workers);
1385 : : else
1386 : 60974 : es->workers_state = NULL;
1387 : :
1388 : : /* Identify plan node type, and print generic details */
10605 bruce@momjian.us 1389 [ + + + + : 61658 : switch (nodeTag(plan))
+ + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + - ]
1390 : : {
10604 1391 : 2161 : case T_Result:
6250 tgl@sss.pgh.pa.us 1392 : 2161 : pname = sname = "Result";
10604 bruce@momjian.us 1393 : 2161 : break;
3532 andres@anarazel.de 1394 : 152 : case T_ProjectSet:
1395 : 152 : pname = sname = "ProjectSet";
1396 : 152 : break;
6189 tgl@sss.pgh.pa.us 1397 : 716 : case T_ModifyTable:
1398 : 716 : sname = "ModifyTable";
1399 [ + + + + : 716 : switch (((ModifyTable *) plan)->operation)
- ]
1400 : : {
1401 : 186 : case CMD_INSERT:
1402 : 186 : pname = operation = "Insert";
1403 : 186 : break;
1404 : 284 : case CMD_UPDATE:
1405 : 284 : pname = operation = "Update";
1406 : 284 : break;
1407 : 114 : case CMD_DELETE:
1408 : 114 : pname = operation = "Delete";
1409 : 114 : break;
1637 alvherre@alvh.no-ip. 1410 : 132 : case CMD_MERGE:
1411 : 132 : pname = operation = "Merge";
1412 : 132 : break;
6189 tgl@sss.pgh.pa.us 1413 :UBC 0 : default:
1414 : 0 : pname = "???";
1415 : 0 : break;
1416 : : }
6189 tgl@sss.pgh.pa.us 1417 :CBC 716 : break;
10604 bruce@momjian.us 1418 : 2438 : case T_Append:
6250 tgl@sss.pgh.pa.us 1419 : 2438 : pname = sname = "Append";
10604 bruce@momjian.us 1420 : 2438 : break;
5820 tgl@sss.pgh.pa.us 1421 : 230 : case T_MergeAppend:
1422 : 230 : pname = sname = "Merge Append";
1423 : 230 : break;
6560 1424 : 36 : case T_RecursiveUnion:
6250 1425 : 36 : pname = sname = "Recursive Union";
6560 1426 : 36 : break;
7824 1427 : 28 : case T_BitmapAnd:
6250 1428 : 28 : pname = sname = "BitmapAnd";
7824 1429 : 28 : break;
1430 : 97 : case T_BitmapOr:
6250 1431 : 97 : pname = sname = "BitmapOr";
7824 1432 : 97 : break;
10604 bruce@momjian.us 1433 : 2779 : case T_NestLoop:
6250 tgl@sss.pgh.pa.us 1434 : 2779 : pname = sname = "Nested Loop";
10604 bruce@momjian.us 1435 : 2779 : break;
1436 : 643 : case T_MergeJoin:
6050 1437 : 643 : pname = "Merge"; /* "Join" gets added by jointype switch */
6250 tgl@sss.pgh.pa.us 1438 : 643 : sname = "Merge Join";
10604 bruce@momjian.us 1439 : 643 : break;
1440 : 3066 : case T_HashJoin:
6050 1441 : 3066 : pname = "Hash"; /* "Join" gets added by jointype switch */
6250 tgl@sss.pgh.pa.us 1442 : 3066 : sname = "Hash Join";
10604 bruce@momjian.us 1443 : 3066 : break;
1444 : 19272 : case T_SeqScan:
6250 tgl@sss.pgh.pa.us 1445 : 19272 : pname = sname = "Seq Scan";
10604 bruce@momjian.us 1446 : 19272 : break;
4075 tgl@sss.pgh.pa.us 1447 : 81 : case T_SampleScan:
1448 : 81 : pname = sname = "Sample Scan";
1449 : 81 : break;
4008 rhaas@postgresql.org 1450 : 445 : case T_Gather:
1451 : 445 : pname = sname = "Gather";
1452 : 445 : break;
3482 1453 : 160 : case T_GatherMerge:
1454 : 160 : pname = sname = "Gather Merge";
1455 : 160 : break;
10604 bruce@momjian.us 1456 : 2703 : case T_IndexScan:
5458 tgl@sss.pgh.pa.us 1457 : 2703 : pname = sname = "Index Scan";
1458 : 2703 : break;
1459 : 1913 : case T_IndexOnlyScan:
1460 : 1913 : pname = sname = "Index Only Scan";
10604 bruce@momjian.us 1461 : 1913 : break;
7824 tgl@sss.pgh.pa.us 1462 : 2866 : case T_BitmapIndexScan:
6250 1463 : 2866 : pname = sname = "Bitmap Index Scan";
7824 1464 : 2866 : break;
1465 : 2737 : case T_BitmapHeapScan:
6250 1466 : 2737 : pname = sname = "Bitmap Heap Scan";
7824 1467 : 2737 : break;
9487 1468 : 46 : case T_TidScan:
6250 1469 : 46 : pname = sname = "Tid Scan";
9487 1470 : 46 : break;
2031 drowley@postgresql.o 1471 : 78 : case T_TidRangeScan:
1472 : 78 : pname = sname = "Tid Range Scan";
1473 : 78 : break;
9487 tgl@sss.pgh.pa.us 1474 : 416 : case T_SubqueryScan:
6250 1475 : 416 : pname = sname = "Subquery Scan";
9487 1476 : 416 : break;
8897 1477 : 436 : case T_FunctionScan:
6250 1478 : 436 : pname = sname = "Function Scan";
8897 1479 : 436 : break;
3483 alvherre@alvh.no-ip. 1480 : 56 : case T_TableFuncScan:
1481 : 56 : pname = sname = "Table Function Scan";
1482 : 56 : break;
7354 mail@joeconway.com 1483 : 412 : case T_ValuesScan:
6250 tgl@sss.pgh.pa.us 1484 : 412 : pname = sname = "Values Scan";
7354 mail@joeconway.com 1485 : 412 : break;
6560 tgl@sss.pgh.pa.us 1486 : 183 : case T_CteScan:
6250 1487 : 183 : pname = sname = "CTE Scan";
6560 1488 : 183 : break;
3460 kgrittn@postgresql.o 1489 : 16 : case T_NamedTuplestoreScan:
1490 : 16 : pname = sname = "Named Tuplestore Scan";
1491 : 16 : break;
6560 tgl@sss.pgh.pa.us 1492 : 36 : case T_WorkTableScan:
6250 1493 : 36 : pname = sname = "WorkTable Scan";
6560 1494 : 36 : break;
5691 1495 : 471 : case T_ForeignScan:
3838 rhaas@postgresql.org 1496 : 471 : sname = "Foreign Scan";
1497 [ + - + + : 471 : switch (((ForeignScan *) plan)->operation)
- ]
1498 : : {
1499 : 438 : case CMD_SELECT:
1500 : 438 : pname = "Foreign Scan";
1501 : 438 : operation = "Select";
1502 : 438 : break;
3838 rhaas@postgresql.org 1503 :UBC 0 : case CMD_INSERT:
1504 : 0 : pname = "Foreign Insert";
1505 : 0 : operation = "Insert";
1506 : 0 : break;
3838 rhaas@postgresql.org 1507 :CBC 19 : case CMD_UPDATE:
1508 : 19 : pname = "Foreign Update";
1509 : 19 : operation = "Update";
1510 : 19 : break;
1511 : 14 : case CMD_DELETE:
1512 : 14 : pname = "Foreign Delete";
1513 : 14 : operation = "Delete";
1514 : 14 : break;
3838 rhaas@postgresql.org 1515 :UBC 0 : default:
1516 : 0 : pname = "???";
1517 : 0 : break;
1518 : : }
5691 tgl@sss.pgh.pa.us 1519 :CBC 471 : break;
4335 rhaas@postgresql.org 1520 :GBC 5 : case T_CustomScan:
1521 : 5 : sname = "Custom Scan";
1522 : 5 : custom_name = ((CustomScan *) plan)->methods->CustomName;
1523 [ + - ]: 5 : if (custom_name)
1524 : 5 : pname = psprintf("Custom Scan (%s)", custom_name);
1525 : : else
4335 rhaas@postgresql.org 1526 :UBC 0 : pname = sname;
4335 rhaas@postgresql.org 1527 :GBC 5 : break;
9897 tgl@sss.pgh.pa.us 1528 :CBC 851 : case T_Material:
6250 1529 : 851 : pname = sname = "Materialize";
9897 1530 : 851 : break;
1894 drowley@postgresql.o 1531 : 238 : case T_Memoize:
1532 : 238 : pname = sname = "Memoize";
1997 1533 : 238 : break;
10604 bruce@momjian.us 1534 : 3498 : case T_Sort:
6250 tgl@sss.pgh.pa.us 1535 : 3498 : pname = sname = "Sort";
10604 bruce@momjian.us 1536 : 3498 : break;
2358 tomas.vondra@postgre 1537 : 260 : case T_IncrementalSort:
1538 : 260 : pname = sname = "Incremental Sort";
1539 : 260 : break;
10604 bruce@momjian.us 1540 : 72 : case T_Group:
6250 tgl@sss.pgh.pa.us 1541 : 72 : pname = sname = "Group";
10604 bruce@momjian.us 1542 : 72 : break;
1543 : 7275 : case T_Agg:
1544 : : {
3896 rhaas@postgresql.org 1545 : 7275 : Agg *agg = (Agg *) plan;
1546 : :
3735 tgl@sss.pgh.pa.us 1547 : 7275 : sname = "Aggregate";
3896 rhaas@postgresql.org 1548 [ + + + + : 7275 : switch (agg->aggstrategy)
- ]
1549 : : {
1550 : 5013 : case AGG_PLAIN:
1551 : 5013 : pname = "Aggregate";
1552 : 5013 : strategy = "Plain";
1553 : 5013 : break;
1554 : 468 : case AGG_SORTED:
1555 : 468 : pname = "GroupAggregate";
1556 : 468 : strategy = "Sorted";
1557 : 468 : break;
1558 : 1716 : case AGG_HASHED:
1559 : 1716 : pname = "HashAggregate";
1560 : 1716 : strategy = "Hashed";
1561 : 1716 : break;
3464 rhodiumtoad@postgres 1562 : 78 : case AGG_MIXED:
1563 : 78 : pname = "MixedAggregate";
1564 : 78 : strategy = "Mixed";
1565 : 78 : break;
3896 rhaas@postgresql.org 1566 :UBC 0 : default:
1567 : 0 : pname = "Aggregate ???";
1568 : 0 : strategy = "???";
1569 : 0 : break;
1570 : : }
1571 : :
3735 tgl@sss.pgh.pa.us 1572 [ + + ]:CBC 7275 : if (DO_AGGSPLIT_SKIPFINAL(agg->aggsplit))
1573 : : {
1574 : 656 : partialmode = "Partial";
1575 : 656 : pname = psprintf("%s %s", partialmode, pname);
1576 : : }
1577 [ + + ]: 6619 : else if (DO_AGGSPLIT_COMBINE(agg->aggsplit))
1578 : : {
1579 : 490 : partialmode = "Finalize";
1580 : 490 : pname = psprintf("%s %s", partialmode, pname);
1581 : : }
1582 : : else
1583 : 6129 : partialmode = "Simple";
1584 : : }
10604 bruce@momjian.us 1585 : 7275 : break;
6475 tgl@sss.pgh.pa.us 1586 : 380 : case T_WindowAgg:
6250 1587 : 380 : pname = sname = "WindowAgg";
6475 1588 : 380 : break;
10604 bruce@momjian.us 1589 : 312 : case T_Unique:
6250 tgl@sss.pgh.pa.us 1590 : 312 : pname = sname = "Unique";
10604 bruce@momjian.us 1591 : 312 : break;
9481 tgl@sss.pgh.pa.us 1592 : 92 : case T_SetOp:
6250 1593 : 92 : sname = "SetOp";
6618 1594 [ + + - ]: 92 : switch (((SetOp *) plan)->strategy)
1595 : : {
1596 : 40 : case SETOP_SORTED:
6250 1597 : 40 : pname = "SetOp";
1598 : 40 : strategy = "Sorted";
9481 1599 : 40 : break;
6618 1600 : 52 : case SETOP_HASHED:
6250 1601 : 52 : pname = "HashSetOp";
1602 : 52 : strategy = "Hashed";
9481 1603 : 52 : break;
9481 tgl@sss.pgh.pa.us 1604 :UBC 0 : default:
1605 : 0 : pname = "SetOp ???";
6250 1606 : 0 : strategy = "???";
9481 1607 : 0 : break;
1608 : : }
9481 tgl@sss.pgh.pa.us 1609 :CBC 92 : break;
6187 1610 : 216 : case T_LockRows:
1611 : 216 : pname = sname = "LockRows";
1612 : 216 : break;
9460 1613 : 720 : case T_Limit:
6250 1614 : 720 : pname = sname = "Limit";
9460 1615 : 720 : break;
10604 bruce@momjian.us 1616 : 3066 : case T_Hash:
6250 tgl@sss.pgh.pa.us 1617 : 3066 : pname = sname = "Hash";
10604 bruce@momjian.us 1618 : 3066 : break;
10604 bruce@momjian.us 1619 :UBC 0 : default:
6250 tgl@sss.pgh.pa.us 1620 : 0 : pname = sname = "???";
10604 bruce@momjian.us 1621 : 0 : break;
1622 : : }
1623 : :
6250 tgl@sss.pgh.pa.us 1624 [ + + ]:CBC 61658 : ExplainOpenGroup("Plan",
1625 : : relationship ? NULL : "Plan",
1626 : : true, es);
1627 : :
1628 [ + + ]: 61658 : if (es->format == EXPLAIN_FORMAT_TEXT)
1629 : : {
1630 [ + + ]: 60936 : if (plan_name)
1631 : : {
2430 1632 : 1319 : ExplainIndentText(es);
6250 1633 : 1319 : appendStringInfo(es->str, "%s\n", plan_name);
1634 : 1319 : es->indent++;
1635 : : }
1636 [ + + ]: 60936 : if (es->indent)
1637 : : {
2430 1638 : 44142 : ExplainIndentText(es);
6250 1639 : 44142 : appendStringInfoString(es->str, "-> ");
1640 : 44142 : es->indent += 2;
1641 : : }
3966 rhaas@postgresql.org 1642 [ + + ]: 60936 : if (plan->parallel_aware)
1643 : 957 : appendStringInfoString(es->str, "Parallel ");
1999 efujita@postgresql.o 1644 [ + + ]: 60936 : if (plan->async_capable)
1645 : 57 : appendStringInfoString(es->str, "Async ");
6250 tgl@sss.pgh.pa.us 1646 : 60936 : appendStringInfoString(es->str, pname);
1647 : 60936 : es->indent++;
1648 : : }
1649 : : else
1650 : : {
1651 : 722 : ExplainPropertyText("Node Type", sname, es);
1652 [ + + ]: 722 : if (strategy)
1653 : 106 : ExplainPropertyText("Strategy", strategy, es);
3735 1654 [ + + ]: 722 : if (partialmode)
1655 : 106 : ExplainPropertyText("Partial Mode", partialmode, es);
6189 1656 [ + + ]: 722 : if (operation)
1657 : 4 : ExplainPropertyText("Operation", operation, es);
6250 1658 [ + + ]: 722 : if (relationship)
1659 : 524 : ExplainPropertyText("Parent Relationship", relationship, es);
1660 [ - + ]: 722 : if (plan_name)
6250 tgl@sss.pgh.pa.us 1661 :UBC 0 : ExplainPropertyText("Subplan Name", plan_name, es);
4335 rhaas@postgresql.org 1662 [ - + ]:CBC 722 : if (custom_name)
4335 rhaas@postgresql.org 1663 :UBC 0 : ExplainPropertyText("Custom Plan Provider", custom_name, es);
3735 tgl@sss.pgh.pa.us 1664 :CBC 722 : ExplainPropertyBool("Parallel Aware", plan->parallel_aware, es);
1999 efujita@postgresql.o 1665 : 722 : ExplainPropertyBool("Async Capable", plan->async_capable, es);
1666 : : }
1667 : :
10605 bruce@momjian.us 1668 [ + + + + : 61658 : switch (nodeTag(plan))
+ + + +
+ ]
1669 : : {
10373 scrappy@hub.org 1670 : 23753 : case T_SeqScan:
1671 : : case T_SampleScan:
1672 : : case T_BitmapHeapScan:
1673 : : case T_TidScan:
1674 : : case T_TidRangeScan:
1675 : : case T_SubqueryScan:
1676 : : case T_FunctionScan:
1677 : : case T_TableFuncScan:
1678 : : case T_ValuesScan:
1679 : : case T_CteScan:
1680 : : case T_WorkTableScan:
4160 rhaas@postgresql.org 1681 : 23753 : ExplainScanTarget((Scan *) plan, es);
1682 : 23753 : break;
5691 tgl@sss.pgh.pa.us 1683 : 476 : case T_ForeignScan:
1684 : : case T_CustomScan:
4160 rhaas@postgresql.org 1685 [ + + ]: 476 : if (((Scan *) plan)->scanrelid > 0)
1686 : 334 : ExplainScanTarget((Scan *) plan, es);
6267 tgl@sss.pgh.pa.us 1687 : 476 : break;
5458 1688 : 2703 : case T_IndexScan:
1689 : : {
1690 : 2703 : IndexScan *indexscan = (IndexScan *) plan;
1691 : :
1692 : 2703 : ExplainIndexScanDetails(indexscan->indexid,
1693 : : indexscan->indexorderdir,
1694 : : es);
1695 : 2703 : ExplainScanTarget((Scan *) indexscan, es);
1696 : : }
1697 : 2703 : break;
1698 : 1913 : case T_IndexOnlyScan:
1699 : : {
1700 : 1913 : IndexOnlyScan *indexonlyscan = (IndexOnlyScan *) plan;
1701 : :
1702 : 1913 : ExplainIndexScanDetails(indexonlyscan->indexid,
1703 : : indexonlyscan->indexorderdir,
1704 : : es);
1705 : 1913 : ExplainScanTarget((Scan *) indexonlyscan, es);
1706 : : }
1707 : 1913 : break;
6267 1708 : 2866 : case T_BitmapIndexScan:
1709 : : {
6250 1710 : 2866 : BitmapIndexScan *bitmapindexscan = (BitmapIndexScan *) plan;
1711 : : const char *indexname =
1220 1712 : 2866 : explain_get_index_name(bitmapindexscan->indexid);
1713 : :
6250 1714 [ + + ]: 2866 : if (es->format == EXPLAIN_FORMAT_TEXT)
2281 1715 : 2826 : appendStringInfo(es->str, " on %s",
1716 : : quote_identifier(indexname));
1717 : : else
6250 1718 : 40 : ExplainPropertyText("Index Name", indexname, es);
1719 : : }
1720 : 2866 : break;
5682 1721 : 716 : case T_ModifyTable:
1722 : 716 : ExplainModifyTarget((ModifyTable *) plan, es);
1723 : 716 : break;
6250 1724 : 6488 : case T_NestLoop:
1725 : : case T_MergeJoin:
1726 : : case T_HashJoin:
1727 : : {
1728 : : const char *jointype;
1729 : :
1730 [ + + + + : 6488 : switch (((Join *) plan)->jointype)
+ + + +
- ]
1731 : : {
1732 : 3681 : case JOIN_INNER:
1733 : 3681 : jointype = "Inner";
1734 : 3681 : break;
1735 : 1375 : case JOIN_LEFT:
1736 : 1375 : jointype = "Left";
1737 : 1375 : break;
1738 : 386 : case JOIN_FULL:
1739 : 386 : jointype = "Full";
1740 : 386 : break;
1741 : 447 : case JOIN_RIGHT:
1742 : 447 : jointype = "Right";
1743 : 447 : break;
1744 : 207 : case JOIN_SEMI:
1745 : 207 : jointype = "Semi";
1746 : 207 : break;
1747 : 177 : case JOIN_ANTI:
1748 : 177 : jointype = "Anti";
1749 : 177 : break;
807 rguo@postgresql.org 1750 : 103 : case JOIN_RIGHT_SEMI:
1751 : 103 : jointype = "Right Semi";
1752 : 103 : break;
1264 tgl@sss.pgh.pa.us 1753 : 112 : case JOIN_RIGHT_ANTI:
1754 : 112 : jointype = "Right Anti";
1755 : 112 : break;
6250 tgl@sss.pgh.pa.us 1756 :UBC 0 : default:
1757 : 0 : jointype = "???";
1758 : 0 : break;
1759 : : }
6250 tgl@sss.pgh.pa.us 1760 [ + + ]:CBC 6488 : if (es->format == EXPLAIN_FORMAT_TEXT)
1761 : : {
1762 : : /*
1763 : : * For historical reasons, the join type is interpolated
1764 : : * into the node type name...
1765 : : */
1766 [ + + ]: 6396 : if (((Join *) plan)->jointype != JOIN_INNER)
1767 : 2787 : appendStringInfo(es->str, " %s Join", jointype);
1768 [ + + ]: 3609 : else if (!IsA(plan, NestLoop))
4707 rhaas@postgresql.org 1769 : 1855 : appendStringInfoString(es->str, " Join");
1770 : : }
1771 : : else
6250 tgl@sss.pgh.pa.us 1772 : 92 : ExplainPropertyText("Join Type", jointype, es);
1773 : : }
1774 : 6488 : break;
1775 : 92 : case T_SetOp:
1776 : : {
1777 : : const char *setopcmd;
1778 : :
1779 [ + + + + : 92 : switch (((SetOp *) plan)->cmd)
- ]
1780 : : {
1781 : 44 : case SETOPCMD_INTERSECT:
1782 : 44 : setopcmd = "Intersect";
1783 : 44 : break;
1784 : 8 : case SETOPCMD_INTERSECT_ALL:
1785 : 8 : setopcmd = "Intersect All";
1786 : 8 : break;
1787 : 36 : case SETOPCMD_EXCEPT:
1788 : 36 : setopcmd = "Except";
1789 : 36 : break;
1790 : 4 : case SETOPCMD_EXCEPT_ALL:
1791 : 4 : setopcmd = "Except All";
1792 : 4 : break;
6250 tgl@sss.pgh.pa.us 1793 :UBC 0 : default:
1794 : 0 : setopcmd = "???";
1795 : 0 : break;
1796 : : }
6250 tgl@sss.pgh.pa.us 1797 [ + - ]:CBC 92 : if (es->format == EXPLAIN_FORMAT_TEXT)
1798 : 92 : appendStringInfo(es->str, " %s", setopcmd);
1799 : : else
6250 tgl@sss.pgh.pa.us 1800 :UBC 0 : ExplainPropertyText("Command", setopcmd, es);
1801 : : }
6560 tgl@sss.pgh.pa.us 1802 :CBC 92 : break;
10604 bruce@momjian.us 1803 : 22651 : default:
1804 : 22651 : break;
1805 : : }
1806 : :
6265 tgl@sss.pgh.pa.us 1807 [ + + ]: 61658 : if (es->costs)
1808 : : {
6250 1809 [ + + ]: 15516 : if (es->format == EXPLAIN_FORMAT_TEXT)
1810 : : {
1811 : 14893 : appendStringInfo(es->str, " (cost=%.2f..%.2f rows=%.0f width=%d)",
1812 : : plan->startup_cost, plan->total_cost,
1813 : : plan->plan_rows, plan->plan_width);
1814 : : }
1815 : : else
1816 : : {
3110 andres@anarazel.de 1817 : 623 : ExplainPropertyFloat("Startup Cost", NULL, plan->startup_cost,
1818 : : 2, es);
1819 : 623 : ExplainPropertyFloat("Total Cost", NULL, plan->total_cost,
1820 : : 2, es);
1821 : 623 : ExplainPropertyFloat("Plan Rows", NULL, plan->plan_rows,
1822 : : 0, es);
1823 : 623 : ExplainPropertyInteger("Plan Width", NULL, plan->plan_width,
1824 : : es);
1825 : : }
1826 : : }
1827 : :
1828 : : /*
1829 : : * We have to forcibly clean up the instrumentation state because we
1830 : : * haven't done ExecutorEnd yet. This is pretty grotty ...
1831 : : *
1832 : : * Note: contrib/auto_explain could cause instrumentation to be set up
1833 : : * even though we didn't ask for it here. Be careful not to print any
1834 : : * instrumentation results the user didn't ask for. But we do the
1835 : : * InstrEndLoop call anyway, if possible, to reduce the number of cases
1836 : : * auto_explain has to contend with.
1837 : : */
7778 neilc@samurai.com 1838 [ + + ]: 61658 : if (planstate->instrument)
1839 : 5368 : InstrEndLoop(planstate->instrument);
1840 : :
4506 tgl@sss.pgh.pa.us 1841 [ + + ]: 61658 : if (es->analyze &&
1842 [ + - + + ]: 5360 : planstate->instrument && planstate->instrument->nloops > 0)
7778 neilc@samurai.com 1843 : 4866 : {
168 andres@anarazel.de 1844 : 4866 : NodeInstrumentation *instr = planstate->instrument;
1845 : 4866 : double nloops = instr->nloops;
1846 : 4866 : double startup_ms = INSTR_TIME_GET_MILLISEC(instr->startup) / nloops;
1847 : 4866 : double total_ms = INSTR_TIME_GET_MILLISEC(instr->instr.total) / nloops;
1848 : 4866 : double rows = instr->ntuples / nloops;
1849 : :
6250 tgl@sss.pgh.pa.us 1850 [ + + ]: 4866 : if (es->format == EXPLAIN_FORMAT_TEXT)
1851 : : {
527 drowley@postgresql.o 1852 : 4191 : appendStringInfoString(es->str, " (actual ");
1853 : :
4506 tgl@sss.pgh.pa.us 1854 [ + + ]: 4191 : if (es->timing)
576 rhaas@postgresql.org 1855 : 2264 : appendStringInfo(es->str, "time=%.3f..%.3f ", startup_ms, total_ms);
1856 : :
570 1857 : 4191 : appendStringInfo(es->str, "rows=%.2f loops=%.0f)", rows, nloops);
1858 : : }
1859 : : else
1860 : : {
4506 tgl@sss.pgh.pa.us 1861 [ + + ]: 675 : if (es->timing)
1862 : : {
1983 1863 : 611 : ExplainPropertyFloat("Actual Startup Time", "ms", startup_ms,
1864 : : 3, es);
1865 : 611 : ExplainPropertyFloat("Actual Total Time", "ms", total_ms,
1866 : : 3, es);
1867 : : }
570 rhaas@postgresql.org 1868 : 675 : ExplainPropertyFloat("Actual Rows", NULL, rows, 2, es);
1869 : 675 : ExplainPropertyFloat("Actual Loops", NULL, nloops, 0, es);
1870 : : }
1871 : : }
6265 tgl@sss.pgh.pa.us 1872 [ + + ]: 56792 : else if (es->analyze)
1873 : : {
6250 1874 [ + - ]: 494 : if (es->format == EXPLAIN_FORMAT_TEXT)
4707 rhaas@postgresql.org 1875 : 494 : appendStringInfoString(es->str, " (never executed)");
1876 : : else
1877 : : {
4506 tgl@sss.pgh.pa.us 1878 [ # # ]:UBC 0 : if (es->timing)
1879 : : {
3110 andres@anarazel.de 1880 : 0 : ExplainPropertyFloat("Actual Startup Time", "ms", 0.0, 3, es);
1881 : 0 : ExplainPropertyFloat("Actual Total Time", "ms", 0.0, 3, es);
1882 : : }
1883 : 0 : ExplainPropertyFloat("Actual Rows", NULL, 0.0, 0, es);
1884 : 0 : ExplainPropertyFloat("Actual Loops", NULL, 0.0, 0, es);
1885 : : }
1886 : : }
1887 : :
1888 : : /* in text format, first line ends here */
6250 tgl@sss.pgh.pa.us 1889 [ + + ]:CBC 61658 : if (es->format == EXPLAIN_FORMAT_TEXT)
1890 : 60936 : appendStringInfoChar(es->str, '\n');
1891 : :
1892 : :
709 drowley@postgresql.o 1893 : 61658 : isdisabled = plan_is_disabled(plan);
1894 [ + + + + ]: 61658 : if (es->format != EXPLAIN_FORMAT_TEXT || isdisabled)
1895 : 811 : ExplainPropertyBool("Disabled", isdisabled, es);
1896 : :
1897 : : /* prepare per-worker general execution details */
2430 tgl@sss.pgh.pa.us 1898 [ + + + + ]: 61658 : if (es->workers_state && es->verbose)
1899 : : {
168 andres@anarazel.de 1900 : 8 : WorkerNodeInstrumentation *w = planstate->worker_instrument;
1901 : :
2430 tgl@sss.pgh.pa.us 1902 [ + + ]: 40 : for (int n = 0; n < w->num_workers; n++)
1903 : : {
168 andres@anarazel.de 1904 : 32 : NodeInstrumentation *instrument = &w->instrument[n];
2430 tgl@sss.pgh.pa.us 1905 : 32 : double nloops = instrument->nloops;
1906 : : double startup_ms;
1907 : : double total_ms;
1908 : : double rows;
1909 : :
1910 [ - + ]: 32 : if (nloops <= 0)
2430 tgl@sss.pgh.pa.us 1911 :UBC 0 : continue;
254 andres@anarazel.de 1912 :CBC 32 : startup_ms = INSTR_TIME_GET_MILLISEC(instrument->startup) / nloops;
168 1913 : 32 : total_ms = INSTR_TIME_GET_MILLISEC(instrument->instr.total) / nloops;
2430 tgl@sss.pgh.pa.us 1914 : 32 : rows = instrument->ntuples / nloops;
1915 : :
1916 : 32 : ExplainOpenWorker(n, es);
1917 : :
1918 [ - + ]: 32 : if (es->format == EXPLAIN_FORMAT_TEXT)
1919 : : {
2430 tgl@sss.pgh.pa.us 1920 :UBC 0 : ExplainIndentText(es);
527 drowley@postgresql.o 1921 : 0 : appendStringInfoString(es->str, "actual ");
2430 tgl@sss.pgh.pa.us 1922 [ # # ]: 0 : if (es->timing)
569 rhaas@postgresql.org 1923 : 0 : appendStringInfo(es->str, "time=%.3f..%.3f ", startup_ms, total_ms);
1924 : :
570 1925 : 0 : appendStringInfo(es->str, "rows=%.2f loops=%.0f\n", rows, nloops);
1926 : : }
1927 : : else
1928 : : {
2430 tgl@sss.pgh.pa.us 1929 [ + - ]:CBC 32 : if (es->timing)
1930 : : {
1931 : 32 : ExplainPropertyFloat("Actual Startup Time", "ms",
1932 : : startup_ms, 3, es);
1933 : 32 : ExplainPropertyFloat("Actual Total Time", "ms",
1934 : : total_ms, 3, es);
1935 : : }
1936 : :
570 rhaas@postgresql.org 1937 : 32 : ExplainPropertyFloat("Actual Rows", NULL, rows, 2, es);
1938 : 32 : ExplainPropertyFloat("Actual Loops", NULL, nloops, 0, es);
1939 : : }
1940 : :
2430 tgl@sss.pgh.pa.us 1941 : 32 : ExplainCloseWorker(n, es);
1942 : : }
1943 : : }
1944 : :
1945 : : /* target list */
6265 1946 [ + + ]: 61658 : if (es->verbose)
5913 1947 : 8440 : show_plan_tlist(planstate, ancestors, es);
1948 : :
1949 : : /* unique join */
3453 1950 [ + + ]: 61658 : switch (nodeTag(plan))
1951 : : {
1952 : 6488 : case T_NestLoop:
1953 : : case T_MergeJoin:
1954 : : case T_HashJoin:
1955 : : /* try not to be too chatty about this in text mode */
1956 [ + + ]: 6488 : if (es->format != EXPLAIN_FORMAT_TEXT ||
1957 [ + + + + ]: 6396 : (es->verbose && ((Join *) plan)->inner_unique))
1958 : 170 : ExplainPropertyBool("Inner Unique",
1959 : 170 : ((Join *) plan)->inner_unique,
1960 : : es);
1961 : 6488 : break;
1962 : 55170 : default:
1963 : 55170 : break;
1964 : : }
1965 : :
1966 : : /* quals, sort keys, etc */
8958 1967 [ + + + + : 61658 : switch (nodeTag(plan))
+ + + + +
+ + + + +
+ + + + +
+ + + + +
+ + + + +
+ ]
1968 : : {
1969 : 2703 : case T_IndexScan:
7818 1970 : 2703 : show_scan_qual(((IndexScan *) plan)->indexqualorig,
1971 : : "Index Cond", planstate, ancestors, es);
5477 1972 [ + + ]: 2703 : if (((IndexScan *) plan)->indexqualorig)
1973 : 2041 : show_instrumentation_count("Rows Removed by Index Recheck", 2,
1974 : : planstate, es);
5771 1975 : 2703 : show_scan_qual(((IndexScan *) plan)->indexorderbyorig,
1976 : : "Order By", planstate, ancestors, es);
5913 1977 : 2703 : show_scan_qual(plan->qual, "Filter", planstate, ancestors, es);
5477 1978 [ + + ]: 2703 : if (plan->qual)
1979 : 442 : show_instrumentation_count("Rows Removed by Filter", 1,
1980 : : planstate, es);
5 pg@bowt.ie 1981 :GNC 2703 : show_indexscan_info(planstate, es);
8958 tgl@sss.pgh.pa.us 1982 :CBC 2703 : break;
5458 1983 : 1913 : case T_IndexOnlyScan:
1984 : 1913 : show_scan_qual(((IndexOnlyScan *) plan)->indexqual,
1985 : : "Index Cond", planstate, ancestors, es);
1721 1986 [ + + ]: 1913 : if (((IndexOnlyScan *) plan)->recheckqual)
5458 1987 : 1246 : show_instrumentation_count("Rows Removed by Index Recheck", 2,
1988 : : planstate, es);
1989 : 1913 : show_scan_qual(((IndexOnlyScan *) plan)->indexorderby,
1990 : : "Order By", planstate, ancestors, es);
1991 : 1913 : show_scan_qual(plan->qual, "Filter", planstate, ancestors, es);
1992 [ + + ]: 1913 : if (plan->qual)
1993 : 96 : show_instrumentation_count("Rows Removed by Filter", 1,
1994 : : planstate, es);
5 pg@bowt.ie 1995 :GNC 1913 : show_indexscan_info(planstate, es);
5458 tgl@sss.pgh.pa.us 1996 :CBC 1913 : break;
7824 1997 : 2866 : case T_BitmapIndexScan:
7818 1998 : 2866 : show_scan_qual(((BitmapIndexScan *) plan)->indexqualorig,
1999 : : "Index Cond", planstate, ancestors, es);
5 pg@bowt.ie 2000 :GNC 2866 : show_indexscan_info(planstate, es);
7824 tgl@sss.pgh.pa.us 2001 :CBC 2866 : break;
2002 : 2737 : case T_BitmapHeapScan:
7818 2003 : 2737 : show_scan_qual(((BitmapHeapScan *) plan)->bitmapqualorig,
2004 : : "Recheck Cond", planstate, ancestors, es);
5477 2005 [ + + ]: 2737 : if (((BitmapHeapScan *) plan)->bitmapqualorig)
2006 : 2685 : show_instrumentation_count("Rows Removed by Index Recheck", 2,
2007 : : planstate, es);
4633 rhaas@postgresql.org 2008 : 2737 : show_scan_qual(plan->qual, "Filter", planstate, ancestors, es);
2009 [ + + ]: 2737 : if (plan->qual)
2010 : 236 : show_instrumentation_count("Rows Removed by Filter", 1,
2011 : : planstate, es);
803 drowley@postgresql.o 2012 : 2737 : show_tidbitmap_info((BitmapHeapScanState *) planstate, es);
166 tomas.vondra@postgre 2013 : 2737 : show_scan_io_usage((ScanState *) planstate, es);
4633 rhaas@postgresql.org 2014 : 2737 : break;
4075 tgl@sss.pgh.pa.us 2015 : 81 : case T_SampleScan:
2016 : 81 : show_tablesample(((SampleScan *) plan)->tablesample,
2017 : : planstate, ancestors, es);
2018 : : /* fall through to print additional fields the same as SeqScan */
2019 : : pg_fallthrough;
8958 2020 : 20416 : case T_SeqScan:
2021 : : case T_ValuesScan:
2022 : : case T_CteScan:
2023 : : case T_NamedTuplestoreScan:
2024 : : case T_WorkTableScan:
2025 : : case T_SubqueryScan:
5913 2026 : 20416 : show_scan_qual(plan->qual, "Filter", planstate, ancestors, es);
5477 2027 [ + + ]: 20416 : if (plan->qual)
2028 : 10024 : show_instrumentation_count("Rows Removed by Filter", 1,
2029 : : planstate, es);
727 ishii@postgresql.org 2030 [ + + ]: 20416 : if (IsA(plan, CteScan))
2031 : 183 : show_ctescan_info(castNode(CteScanState, planstate), es);
166 tomas.vondra@postgre 2032 : 20416 : show_scan_io_usage((ScanState *) planstate, es);
8958 tgl@sss.pgh.pa.us 2033 : 20416 : break;
4008 rhaas@postgresql.org 2034 : 445 : case T_Gather:
2035 : : {
3819 tgl@sss.pgh.pa.us 2036 : 445 : Gather *gather = (Gather *) plan;
2037 : :
4008 rhaas@postgresql.org 2038 : 445 : show_scan_qual(plan->qual, "Filter", planstate, ancestors, es);
2039 [ - + ]: 445 : if (plan->qual)
4008 rhaas@postgresql.org 2040 :UBC 0 : show_instrumentation_count("Rows Removed by Filter", 1,
2041 : : planstate, es);
3110 andres@anarazel.de 2042 :CBC 445 : ExplainPropertyInteger("Workers Planned", NULL,
4008 rhaas@postgresql.org 2043 : 445 : gather->num_workers, es);
2044 : :
3810 2045 [ + + ]: 445 : if (es->analyze)
2046 : : {
2047 : : int nworkers;
2048 : :
2049 : 112 : nworkers = ((GatherState *) planstate)->nworkers_launched;
3110 andres@anarazel.de 2050 : 112 : ExplainPropertyInteger("Workers Launched", NULL,
2051 : : nworkers, es);
2052 : : }
2053 : :
3735 tgl@sss.pgh.pa.us 2054 [ + + + + ]: 445 : if (gather->single_copy || es->format != EXPLAIN_FORMAT_TEXT)
2055 : 70 : ExplainPropertyBool("Single Copy", gather->single_copy, es);
2056 : : }
4008 rhaas@postgresql.org 2057 : 445 : break;
3482 2058 : 160 : case T_GatherMerge:
2059 : : {
2060 : 160 : GatherMerge *gm = (GatherMerge *) plan;
2061 : :
2062 : 160 : show_scan_qual(plan->qual, "Filter", planstate, ancestors, es);
2063 [ - + ]: 160 : if (plan->qual)
3482 rhaas@postgresql.org 2064 :UBC 0 : show_instrumentation_count("Rows Removed by Filter", 1,
2065 : : planstate, es);
3110 andres@anarazel.de 2066 :CBC 160 : ExplainPropertyInteger("Workers Planned", NULL,
3482 rhaas@postgresql.org 2067 : 160 : gm->num_workers, es);
2068 : :
2069 [ + + ]: 160 : if (es->analyze)
2070 : : {
2071 : : int nworkers;
2072 : :
2073 : 8 : nworkers = ((GatherMergeState *) planstate)->nworkers_launched;
3110 andres@anarazel.de 2074 : 8 : ExplainPropertyInteger("Workers Launched", NULL,
2075 : : nworkers, es);
2076 : : }
2077 : : }
3482 rhaas@postgresql.org 2078 : 160 : break;
5871 tgl@sss.pgh.pa.us 2079 : 436 : case T_FunctionScan:
2080 [ + + ]: 436 : if (es->verbose)
2081 : : {
4686 2082 : 154 : List *fexprs = NIL;
2083 : : ListCell *lc;
2084 : :
2085 [ + - + + : 309 : foreach(lc, ((FunctionScan *) plan)->functions)
+ + ]
2086 : : {
2087 : 155 : RangeTblFunction *rtfunc = (RangeTblFunction *) lfirst(lc);
2088 : :
2089 : 155 : fexprs = lappend(fexprs, rtfunc->funcexpr);
2090 : : }
2091 : : /* We rely on show_expression to insert commas as needed */
2092 : 154 : show_expression((Node *) fexprs,
2093 : : "Function Call", planstate, ancestors,
5871 2094 : 154 : es->verbose, es);
2095 : : }
2096 : 436 : show_scan_qual(plan->qual, "Filter", planstate, ancestors, es);
5477 2097 [ + + ]: 436 : if (plan->qual)
2098 : 23 : show_instrumentation_count("Rows Removed by Filter", 1,
2099 : : planstate, es);
5871 2100 : 436 : break;
3483 alvherre@alvh.no-ip. 2101 : 56 : case T_TableFuncScan:
2102 [ + + ]: 56 : if (es->verbose)
2103 : : {
2104 : 52 : TableFunc *tablefunc = ((TableFuncScan *) plan)->tablefunc;
2105 : :
2106 : 52 : show_expression((Node *) tablefunc,
2107 : : "Table Function Call", planstate, ancestors,
2108 : 52 : es->verbose, es);
2109 : : }
2110 : 56 : show_scan_qual(plan->qual, "Filter", planstate, ancestors, es);
2111 [ + + ]: 56 : if (plan->qual)
2112 : 12 : show_instrumentation_count("Rows Removed by Filter", 1,
2113 : : planstate, es);
727 ishii@postgresql.org 2114 : 56 : show_table_func_scan_info(castNode(TableFuncScanState,
2115 : : planstate), es);
3483 alvherre@alvh.no-ip. 2116 : 56 : break;
7603 tgl@sss.pgh.pa.us 2117 : 46 : case T_TidScan:
2118 : : {
2119 : : /*
2120 : : * The tidquals list has OR semantics, so be sure to show it
2121 : : * as an OR condition.
2122 : : */
7291 bruce@momjian.us 2123 : 46 : List *tidquals = ((TidScan *) plan)->tidquals;
2124 : :
7603 tgl@sss.pgh.pa.us 2125 [ + + ]: 46 : if (list_length(tidquals) > 1)
2126 : 8 : tidquals = list_make1(make_orclause(tidquals));
5913 2127 : 46 : show_scan_qual(tidquals, "TID Cond", planstate, ancestors, es);
2128 : 46 : show_scan_qual(plan->qual, "Filter", planstate, ancestors, es);
5477 2129 [ + + ]: 46 : if (plan->qual)
2130 : 12 : show_instrumentation_count("Rows Removed by Filter", 1,
2131 : : planstate, es);
2132 : : }
7603 2133 : 46 : break;
2031 drowley@postgresql.o 2134 : 78 : case T_TidRangeScan:
2135 : : {
2136 : : /*
2137 : : * The tidrangequals list has AND semantics, so be sure to
2138 : : * show it as an AND condition.
2139 : : */
2140 : 78 : List *tidquals = ((TidRangeScan *) plan)->tidrangequals;
2141 : :
2142 [ + + ]: 78 : if (list_length(tidquals) > 1)
2143 : 14 : tidquals = list_make1(make_andclause(tidquals));
2144 : 78 : show_scan_qual(tidquals, "TID Cond", planstate, ancestors, es);
2145 : 78 : show_scan_qual(plan->qual, "Filter", planstate, ancestors, es);
2146 [ - + ]: 78 : if (plan->qual)
2031 drowley@postgresql.o 2147 :UBC 0 : show_instrumentation_count("Rows Removed by Filter", 1,
2148 : : planstate, es);
166 tomas.vondra@postgre 2149 :CBC 78 : show_scan_io_usage((ScanState *) planstate, es);
2150 : : }
2031 drowley@postgresql.o 2151 : 78 : break;
5691 tgl@sss.pgh.pa.us 2152 : 471 : case T_ForeignScan:
2153 : 471 : show_scan_qual(plan->qual, "Filter", planstate, ancestors, es);
5477 2154 [ + + ]: 471 : if (plan->qual)
2155 : 56 : show_instrumentation_count("Rows Removed by Filter", 1,
2156 : : planstate, es);
5691 2157 : 471 : show_foreignscan_info((ForeignScanState *) planstate, es);
2158 : 471 : break;
4335 rhaas@postgresql.org 2159 :GBC 5 : case T_CustomScan:
2160 : : {
2161 : 5 : CustomScanState *css = (CustomScanState *) planstate;
2162 : :
2163 : 5 : show_scan_qual(plan->qual, "Filter", planstate, ancestors, es);
2164 [ + + ]: 5 : if (plan->qual)
2165 : 1 : show_instrumentation_count("Rows Removed by Filter", 1,
2166 : : planstate, es);
2167 [ - + ]: 5 : if (css->methods->ExplainCustomScan)
4335 rhaas@postgresql.org 2168 :UBC 0 : css->methods->ExplainCustomScan(css, ancestors, es);
2169 : : }
4335 rhaas@postgresql.org 2170 :GBC 5 : break;
8958 tgl@sss.pgh.pa.us 2171 :CBC 2779 : case T_NestLoop:
8948 2172 : 2779 : show_upper_qual(((NestLoop *) plan)->join.joinqual,
2173 : : "Join Filter", planstate, ancestors, es);
5477 2174 [ + + ]: 2779 : if (((NestLoop *) plan)->join.joinqual)
2175 : 834 : show_instrumentation_count("Rows Removed by Join Filter", 1,
2176 : : planstate, es);
5913 2177 : 2779 : show_upper_qual(plan->qual, "Filter", planstate, ancestors, es);
5477 2178 [ + + ]: 2779 : if (plan->qual)
2179 : 72 : show_instrumentation_count("Rows Removed by Filter", 2,
2180 : : planstate, es);
8958 2181 : 2779 : break;
2182 : 643 : case T_MergeJoin:
8948 2183 : 643 : show_upper_qual(((MergeJoin *) plan)->mergeclauses,
2184 : : "Merge Cond", planstate, ancestors, es);
2185 : 643 : show_upper_qual(((MergeJoin *) plan)->join.joinqual,
2186 : : "Join Filter", planstate, ancestors, es);
5477 2187 [ + + ]: 643 : if (((MergeJoin *) plan)->join.joinqual)
2188 : 17 : show_instrumentation_count("Rows Removed by Join Filter", 1,
2189 : : planstate, es);
5913 2190 : 643 : show_upper_qual(plan->qual, "Filter", planstate, ancestors, es);
5477 2191 [ + + ]: 643 : if (plan->qual)
2192 : 36 : show_instrumentation_count("Rows Removed by Filter", 2,
2193 : : planstate, es);
8958 2194 : 643 : break;
2195 : 3066 : case T_HashJoin:
8948 2196 : 3066 : show_upper_qual(((HashJoin *) plan)->hashclauses,
2197 : : "Hash Cond", planstate, ancestors, es);
2198 : 3066 : show_upper_qual(((HashJoin *) plan)->join.joinqual,
2199 : : "Join Filter", planstate, ancestors, es);
5477 2200 [ + + ]: 3066 : if (((HashJoin *) plan)->join.joinqual)
2201 : 24 : show_instrumentation_count("Rows Removed by Join Filter", 1,
2202 : : planstate, es);
5913 2203 : 3066 : show_upper_qual(plan->qual, "Filter", planstate, ancestors, es);
5477 2204 [ + + ]: 3066 : if (plan->qual)
2205 : 202 : show_instrumentation_count("Rows Removed by Filter", 2,
2206 : : planstate, es);
8958 2207 : 3066 : break;
2208 : 7275 : case T_Agg:
3524 andres@anarazel.de 2209 : 7275 : show_agg_keys(castNode(AggState, planstate), ancestors, es);
4665 tgl@sss.pgh.pa.us 2210 : 7275 : show_upper_qual(plan->qual, "Filter", planstate, ancestors, es);
2377 jdavis@postgresql.or 2211 : 7275 : show_hashagg_info((AggState *) planstate, es);
4665 tgl@sss.pgh.pa.us 2212 [ + + ]: 7275 : if (plan->qual)
2213 : 290 : show_instrumentation_count("Rows Removed by Filter", 1,
2214 : : planstate, es);
2215 : 7275 : break;
1626 drowley@postgresql.o 2216 : 380 : case T_WindowAgg:
558 tgl@sss.pgh.pa.us 2217 : 380 : show_window_def(castNode(WindowAggState, planstate), ancestors, es);
2218 : 380 : show_upper_qual(((WindowAgg *) plan)->runConditionOrig,
2219 : : "Run Condition", planstate, ancestors, es);
1626 drowley@postgresql.o 2220 : 380 : show_upper_qual(plan->qual, "Filter", planstate, ancestors, es);
2221 [ + + ]: 380 : if (plan->qual)
2222 : 4 : show_instrumentation_count("Rows Removed by Filter", 1,
2223 : : planstate, es);
733 ishii@postgresql.org 2224 : 380 : show_windowagg_info(castNode(WindowAggState, planstate), es);
1626 drowley@postgresql.o 2225 : 380 : break;
8958 tgl@sss.pgh.pa.us 2226 : 72 : case T_Group:
3524 andres@anarazel.de 2227 : 72 : show_group_keys(castNode(GroupState, planstate), ancestors, es);
5913 tgl@sss.pgh.pa.us 2228 : 72 : show_upper_qual(plan->qual, "Filter", planstate, ancestors, es);
5477 2229 [ - + ]: 72 : if (plan->qual)
5477 tgl@sss.pgh.pa.us 2230 :UBC 0 : show_instrumentation_count("Rows Removed by Filter", 1,
2231 : : planstate, es);
8958 tgl@sss.pgh.pa.us 2232 :CBC 72 : break;
8891 2233 : 3498 : case T_Sort:
3524 andres@anarazel.de 2234 : 3498 : show_sort_keys(castNode(SortState, planstate), ancestors, es);
2235 : 3498 : show_sort_info(castNode(SortState, planstate), es);
8891 tgl@sss.pgh.pa.us 2236 : 3498 : break;
2358 tomas.vondra@postgre 2237 : 260 : case T_IncrementalSort:
2238 : 260 : show_incremental_sort_keys(castNode(IncrementalSortState, planstate),
2239 : : ancestors, es);
2240 : 260 : show_incremental_sort_info(castNode(IncrementalSortState, planstate),
2241 : : es);
2242 : 260 : break;
5820 tgl@sss.pgh.pa.us 2243 : 230 : case T_MergeAppend:
3524 andres@anarazel.de 2244 : 230 : show_merge_append_keys(castNode(MergeAppendState, planstate),
2245 : : ancestors, es);
5820 tgl@sss.pgh.pa.us 2246 : 230 : break;
8958 2247 : 2161 : case T_Result:
362 rhaas@postgresql.org 2248 : 2161 : show_result_replacement_info(castNode(Result, plan), es);
8958 tgl@sss.pgh.pa.us 2249 : 2161 : show_upper_qual((List *) ((Result *) plan)->resconstantqual,
2250 : : "One-Time Filter", planstate, ancestors, es);
5913 2251 : 2161 : show_upper_qual(plan->qual, "Filter", planstate, ancestors, es);
5477 2252 [ - + ]: 2161 : if (plan->qual)
5477 tgl@sss.pgh.pa.us 2253 :UBC 0 : show_instrumentation_count("Rows Removed by Filter", 1,
2254 : : planstate, es);
8958 tgl@sss.pgh.pa.us 2255 :CBC 2161 : break;
4942 2256 : 716 : case T_ModifyTable:
3524 andres@anarazel.de 2257 : 716 : show_modifytable_info(castNode(ModifyTableState, planstate), ancestors,
2258 : : es);
4942 tgl@sss.pgh.pa.us 2259 : 716 : break;
6075 rhaas@postgresql.org 2260 : 3066 : case T_Hash:
3524 andres@anarazel.de 2261 : 3066 : show_hash_info(castNode(HashState, planstate), es);
6075 rhaas@postgresql.org 2262 : 3066 : break;
807 drowley@postgresql.o 2263 : 851 : case T_Material:
2264 : 851 : show_material_info(castNode(MaterialState, planstate), es);
2265 : 851 : break;
1894 2266 : 238 : case T_Memoize:
2267 : 238 : show_memoize_info(castNode(MemoizeState, planstate), ancestors,
2268 : : es);
1997 2269 : 238 : break;
727 ishii@postgresql.org 2270 : 36 : case T_RecursiveUnion:
2271 : 36 : show_recursive_union_info(castNode(RecursiveUnionState,
2272 : : planstate), es);
2273 : 36 : break;
8958 tgl@sss.pgh.pa.us 2274 : 4055 : default:
2275 : 4055 : break;
2276 : : }
2277 : :
2278 : : /*
2279 : : * Prepare per-worker JIT instrumentation. As with the overall JIT
2280 : : * summary, this is printed only if printing costs is enabled.
2281 : : */
2430 2282 [ + + + + : 61658 : if (es->workers_state && es->costs && es->verbose)
+ + ]
2283 : : {
2284 : 8 : SharedJitInstrumentation *w = planstate->worker_jit_instrument;
2285 : :
2286 [ - + ]: 8 : if (w)
2287 : : {
2430 tgl@sss.pgh.pa.us 2288 [ # # ]:UBC 0 : for (int n = 0; n < w->num_workers; n++)
2289 : : {
2290 : 0 : ExplainOpenWorker(n, es);
2291 : 0 : ExplainPrintJIT(es, planstate->state->es_jit_flags,
2292 : : &w->jit_instr[n]);
2293 : 0 : ExplainCloseWorker(n, es);
2294 : : }
2295 : : }
2296 : : }
2297 : :
2298 : : /* Show buffer/WAL usage */
4506 tgl@sss.pgh.pa.us 2299 [ + + + - ]:CBC 61658 : if (es->buffers && planstate->instrument)
168 andres@anarazel.de 2300 : 2832 : show_buffer_usage(es, &planstate->instrument->instr.bufusage);
2358 akapila@postgresql.o 2301 [ - + - - ]: 61658 : if (es->wal && planstate->instrument)
168 andres@anarazel.de 2302 :UBC 0 : show_wal_usage(es, &planstate->instrument->instr.walusage);
2303 : :
2304 : : /* Prepare per-worker buffer/WAL usage */
2358 akapila@postgresql.o 2305 [ + + + + :CBC 61658 : if (es->workers_state && (es->buffers || es->wal) && es->verbose)
- + + + ]
2306 : : {
168 andres@anarazel.de 2307 : 8 : WorkerNodeInstrumentation *w = planstate->worker_instrument;
2308 : :
2430 tgl@sss.pgh.pa.us 2309 [ + + ]: 40 : for (int n = 0; n < w->num_workers; n++)
2310 : : {
168 andres@anarazel.de 2311 : 32 : NodeInstrumentation *instrument = &w->instrument[n];
3938 rhaas@postgresql.org 2312 : 32 : double nloops = instrument->nloops;
2313 : :
2314 [ - + ]: 32 : if (nloops <= 0)
3938 rhaas@postgresql.org 2315 :UBC 0 : continue;
2316 : :
2430 tgl@sss.pgh.pa.us 2317 :CBC 32 : ExplainOpenWorker(n, es);
2358 akapila@postgresql.o 2318 [ + - ]: 32 : if (es->buffers)
168 andres@anarazel.de 2319 : 32 : show_buffer_usage(es, &instrument->instr.bufusage);
2358 akapila@postgresql.o 2320 [ - + ]: 32 : if (es->wal)
168 andres@anarazel.de 2321 :UBC 0 : show_wal_usage(es, &instrument->instr.walusage);
2430 tgl@sss.pgh.pa.us 2322 :CBC 32 : ExplainCloseWorker(n, es);
2323 : : }
2324 : : }
2325 : :
2326 : : /* Show per-worker details for this plan node, then pop that stack */
2327 [ + + ]: 61658 : if (es->workers_state)
2328 : 684 : ExplainFlushWorkersState(es);
2329 : 61658 : es->workers_state = save_workers_state;
2330 : :
2331 : : /* Allow plugins to print additional information */
551 rhaas@postgresql.org 2332 [ + + ]: 61658 : if (explain_per_node_hook)
2333 : 59 : (*explain_per_node_hook) (planstate, ancestors, relationship,
2334 : : plan_name, es);
2335 : :
2336 : : /*
2337 : : * If partition pruning was done during executor initialization, the
2338 : : * number of child plans we'll display below will be less than the number
2339 : : * of subplans that was specified in the plan. To make this a bit less
2340 : : * mysterious, emit an indication that this happened. Note that this
2341 : : * field is emitted now because we want it to be a property of the parent
2342 : : * node; it *cannot* be emitted within the Plans sub-node we'll open next.
2343 : : */
2420 tgl@sss.pgh.pa.us 2344 [ + + + ]: 61658 : switch (nodeTag(plan))
2345 : : {
2346 : 2438 : case T_Append:
2347 : 2438 : ExplainMissingMembers(((AppendState *) planstate)->as_nplans,
2348 : 2438 : list_length(((Append *) plan)->appendplans),
2349 : : es);
2350 : 2438 : break;
2351 : 230 : case T_MergeAppend:
2352 : 230 : ExplainMissingMembers(((MergeAppendState *) planstate)->ms_nplans,
2353 : 230 : list_length(((MergeAppend *) plan)->mergeplans),
2354 : : es);
2355 : 230 : break;
2356 : 58990 : default:
2357 : 58990 : break;
2358 : : }
2359 : :
2360 : : /* Get ready to display the child plans */
5913 2361 : 184235 : haschildren = planstate->initPlan ||
2362 [ + + ]: 60919 : outerPlanState(planstate) ||
2363 [ + - ]: 33285 : innerPlanState(planstate) ||
6250 2364 [ + + ]: 33285 : IsA(plan, Append) ||
5820 2365 [ + + ]: 30923 : IsA(plan, MergeAppend) ||
6250 2366 [ + + ]: 30697 : IsA(plan, BitmapAnd) ||
2367 [ + + ]: 30669 : IsA(plan, BitmapOr) ||
2368 [ + + ]: 30572 : IsA(plan, SubqueryScan) ||
4104 rhaas@postgresql.org 2369 [ + + ]: 30156 : (IsA(planstate, CustomScanState) &&
2370 [ + + + - ]: 122582 : ((CustomScanState *) planstate)->custom_ps != NIL) ||
6250 tgl@sss.pgh.pa.us 2371 [ + + ]: 30156 : planstate->subPlan;
2372 [ + + ]: 61658 : if (haschildren)
2373 : : {
2374 : 31831 : ExplainOpenGroup("Plans", "Plans", false, es);
2375 : : /* Pass current Plan as head of ancestors list for children */
2475 2376 : 31831 : ancestors = lcons(plan, ancestors);
2377 : : }
2378 : :
2379 : : /* initPlan-s */
5913 2380 [ + + ]: 61658 : if (planstate->initPlan)
2381 : 739 : ExplainSubPlans(planstate->initPlan, ancestors, "InitPlan", es);
2382 : :
2383 : : /* lefttree */
2384 [ + + ]: 61658 : if (outerPlanState(planstate))
2385 : 27897 : ExplainNode(outerPlanState(planstate), ancestors,
2386 : : "Outer", NULL, es);
2387 : :
2388 : : /* righttree */
2389 [ + + ]: 61658 : if (innerPlanState(planstate))
2390 : 6616 : ExplainNode(innerPlanState(planstate), ancestors,
2391 : : "Inner", NULL, es);
2392 : :
2393 : : /* special child plans */
6267 2394 [ + + + + : 61658 : switch (nodeTag(plan))
+ + + ]
2395 : : {
2396 : 2438 : case T_Append:
3088 alvherre@alvh.no-ip. 2397 : 2438 : ExplainMemberNodes(((AppendState *) planstate)->appendplans,
2398 : : ((AppendState *) planstate)->as_nplans,
2399 : : ancestors, es);
6267 tgl@sss.pgh.pa.us 2400 : 2438 : break;
5820 2401 : 230 : case T_MergeAppend:
3088 alvherre@alvh.no-ip. 2402 : 230 : ExplainMemberNodes(((MergeAppendState *) planstate)->mergeplans,
2403 : : ((MergeAppendState *) planstate)->ms_nplans,
2404 : : ancestors, es);
5820 tgl@sss.pgh.pa.us 2405 : 230 : break;
6267 2406 : 28 : case T_BitmapAnd:
3088 alvherre@alvh.no-ip. 2407 : 28 : ExplainMemberNodes(((BitmapAndState *) planstate)->bitmapplans,
2408 : : ((BitmapAndState *) planstate)->nplans,
2409 : : ancestors, es);
6267 tgl@sss.pgh.pa.us 2410 : 28 : break;
2411 : 97 : case T_BitmapOr:
3088 alvherre@alvh.no-ip. 2412 : 97 : ExplainMemberNodes(((BitmapOrState *) planstate)->bitmapplans,
2413 : : ((BitmapOrState *) planstate)->nplans,
2414 : : ancestors, es);
6267 tgl@sss.pgh.pa.us 2415 : 97 : break;
2416 : 416 : case T_SubqueryScan:
5913 2417 : 416 : ExplainNode(((SubqueryScanState *) planstate)->subplan, ancestors,
2418 : : "Subquery", NULL, es);
6267 2419 : 416 : break;
4104 rhaas@postgresql.org 2420 :GBC 5 : case T_CustomScan:
2421 : 5 : ExplainCustomChildren((CustomScanState *) planstate,
2422 : : ancestors, es);
2423 : 5 : break;
6267 tgl@sss.pgh.pa.us 2424 :CBC 58444 : default:
2425 : 58444 : break;
2426 : : }
2427 : :
2428 : : /* subPlan-s */
8690 2429 [ + + ]: 61658 : if (planstate->subPlan)
5913 2430 : 506 : ExplainSubPlans(planstate->subPlan, ancestors, "SubPlan", es);
2431 : :
2432 : : /* end of child plans */
6250 2433 [ + + ]: 61658 : if (haschildren)
2434 : : {
5780 peter_e@gmx.net 2435 : 31831 : ancestors = list_delete_first(ancestors);
6250 tgl@sss.pgh.pa.us 2436 : 31831 : ExplainCloseGroup("Plans", "Plans", false, es);
2437 : : }
2438 : :
2439 : : /* in text format, undo whatever indentation we added */
2440 [ + + ]: 61658 : if (es->format == EXPLAIN_FORMAT_TEXT)
2441 : 60936 : es->indent = save_indent;
2442 : :
2443 [ + + ]: 61658 : ExplainCloseGroup("Plan",
2444 : : relationship ? NULL : "Plan",
2445 : : true, es);
11030 scrappy@hub.org 2446 : 61658 : }
2447 : :
2448 : : /*
2449 : : * Show the targetlist of a plan node
2450 : : */
2451 : : static void
5913 tgl@sss.pgh.pa.us 2452 : 8440 : show_plan_tlist(PlanState *planstate, List *ancestors, ExplainState *es)
2453 : : {
2454 : 8440 : Plan *plan = planstate->plan;
2455 : : List *context;
6250 2456 : 8440 : List *result = NIL;
2457 : : bool useprefix;
2458 : : ListCell *lc;
2459 : :
2460 : : /* No work if empty tlist (this occurs eg in bitmap indexscans) */
6730 2461 [ + + ]: 8440 : if (plan->targetlist == NIL)
2462 : 343 : return;
2463 : : /* The tlist of an Append isn't real helpful, so suppress it */
2464 [ + + ]: 8097 : if (IsA(plan, Append))
2465 : 215 : return;
2466 : : /* Likewise for MergeAppend and RecursiveUnion */
5820 2467 [ + + ]: 7882 : if (IsA(plan, MergeAppend))
2468 : 25 : return;
6560 2469 [ + + ]: 7857 : if (IsA(plan, RecursiveUnion))
2470 : 32 : return;
2471 : :
2472 : : /*
2473 : : * Likewise for ForeignScan that executes a direct INSERT/UPDATE/DELETE
2474 : : *
2475 : : * Note: the tlist for a ForeignScan that executes a direct INSERT/UPDATE
2476 : : * might contain subplan output expressions that are confusing in this
2477 : : * context. The tlist for a ForeignScan that executes a direct UPDATE/
2478 : : * DELETE always contains "junk" target columns to identify the exact row
2479 : : * to update or delete, which would be confusing in this context. So, we
2480 : : * suppress it in all the cases.
2481 : : */
3838 rhaas@postgresql.org 2482 [ + + ]: 7825 : if (IsA(plan, ForeignScan) &&
2483 [ + + ]: 428 : ((ForeignScan *) plan)->operation != CMD_SELECT)
2484 : 33 : return;
2485 : :
2486 : : /* Set up deparsing context */
2475 tgl@sss.pgh.pa.us 2487 : 7792 : context = set_deparse_context_plan(es->deparse_cxt,
2488 : : plan,
2489 : : ancestors);
740 rguo@postgresql.org 2490 : 7792 : useprefix = es->rtable_size > 1;
2491 : :
2492 : : /* Deparse each result column (we now include resjunk ones) */
6730 tgl@sss.pgh.pa.us 2493 [ + - + + : 27059 : foreach(lc, plan->targetlist)
+ + ]
2494 : : {
2495 : 19267 : TargetEntry *tle = (TargetEntry *) lfirst(lc);
2496 : :
6250 2497 : 19267 : result = lappend(result,
6050 bruce@momjian.us 2498 : 19267 : deparse_expression((Node *) tle->expr, context,
2499 : : useprefix, false));
2500 : : }
2501 : :
2502 : : /* Print results */
6250 tgl@sss.pgh.pa.us 2503 : 7792 : ExplainPropertyList("Output", result, es);
2504 : : }
2505 : :
2506 : : /*
2507 : : * Show a generic expression
2508 : : */
2509 : : static void
5871 2510 : 26039 : show_expression(Node *node, const char *qlabel,
2511 : : PlanState *planstate, List *ancestors,
2512 : : bool useprefix, ExplainState *es)
2513 : : {
2514 : : List *context;
2515 : : char *exprstr;
2516 : :
2517 : : /* Set up deparsing context */
2475 2518 : 26039 : context = set_deparse_context_plan(es->deparse_cxt,
2519 : : planstate->plan,
2520 : : ancestors);
2521 : :
2522 : : /* Deparse the expression */
7149 2523 : 26039 : exprstr = deparse_expression(node, context, useprefix, false);
2524 : :
2525 : : /* And add to es->str */
6250 2526 : 26039 : ExplainPropertyText(qlabel, exprstr, es);
8958 2527 : 26039 : }
2528 : :
2529 : : /*
2530 : : * Show a qualifier expression (which is a List with implicit AND semantics)
2531 : : */
2532 : : static void
5871 2533 : 73583 : show_qual(List *qual, const char *qlabel,
2534 : : PlanState *planstate, List *ancestors,
2535 : : bool useprefix, ExplainState *es)
2536 : : {
2537 : : Node *node;
2538 : :
2539 : : /* No work if empty qual */
2540 [ + + ]: 73583 : if (qual == NIL)
2541 : 47750 : return;
2542 : :
2543 : : /* Convert AND list to explicit AND */
2544 : 25833 : node = (Node *) make_ands_explicit(qual);
2545 : :
2546 : : /* And show it */
2547 : 25833 : show_expression(node, qlabel, planstate, ancestors, useprefix, es);
2548 : : }
2549 : :
2550 : : /*
2551 : : * Show a qualifier expression for a scan plan node
2552 : : */
2553 : : static void
6267 2554 : 44425 : show_scan_qual(List *qual, const char *qlabel,
2555 : : PlanState *planstate, List *ancestors,
2556 : : ExplainState *es)
2557 : : {
2558 : : bool useprefix;
2559 : :
2318 2560 [ + + + + ]: 44425 : useprefix = (IsA(planstate->plan, SubqueryScan) || es->verbose);
5913 2561 : 44425 : show_qual(qual, qlabel, planstate, ancestors, useprefix, es);
6267 2562 : 44425 : }
2563 : :
2564 : : /*
2565 : : * Show a qualifier expression for an upper-level plan node
2566 : : */
2567 : : static void
5913 2568 : 29158 : show_upper_qual(List *qual, const char *qlabel,
2569 : : PlanState *planstate, List *ancestors,
2570 : : ExplainState *es)
2571 : : {
2572 : : bool useprefix;
2573 : :
740 rguo@postgresql.org 2574 [ + + + + ]: 29158 : useprefix = (es->rtable_size > 1 || es->verbose);
5913 tgl@sss.pgh.pa.us 2575 : 29158 : show_qual(qual, qlabel, planstate, ancestors, useprefix, es);
8958 2576 : 29158 : }
2577 : :
2578 : : /*
2579 : : * Show the sort keys for a Sort node.
2580 : : */
2581 : : static void
5913 2582 : 3498 : show_sort_keys(SortState *sortstate, List *ancestors, ExplainState *es)
2583 : : {
2584 : 3498 : Sort *plan = (Sort *) sortstate->ss.ps.plan;
2585 : :
4665 2586 : 3498 : show_sort_group_keys((PlanState *) sortstate, "Sort Key",
2587 : : plan->numCols, 0, plan->sortColIdx,
2588 : : plan->sortOperators, plan->collations,
2589 : : plan->nullsFirst,
2590 : : ancestors, es);
5820 2591 : 3498 : }
2592 : :
2593 : : /*
2594 : : * Show the sort keys for an IncrementalSort node.
2595 : : */
2596 : : static void
2358 tomas.vondra@postgre 2597 : 260 : show_incremental_sort_keys(IncrementalSortState *incrsortstate,
2598 : : List *ancestors, ExplainState *es)
2599 : : {
2600 : 260 : IncrementalSort *plan = (IncrementalSort *) incrsortstate->ss.ps.plan;
2601 : :
2602 : 260 : show_sort_group_keys((PlanState *) incrsortstate, "Sort Key",
2603 : : plan->sort.numCols, plan->nPresortedCols,
2604 : : plan->sort.sortColIdx,
2605 : : plan->sort.sortOperators, plan->sort.collations,
2606 : : plan->sort.nullsFirst,
2607 : : ancestors, es);
2608 : 260 : }
2609 : :
2610 : : /*
2611 : : * Likewise, for a MergeAppend node.
2612 : : */
2613 : : static void
5820 tgl@sss.pgh.pa.us 2614 : 230 : show_merge_append_keys(MergeAppendState *mstate, List *ancestors,
2615 : : ExplainState *es)
2616 : : {
2617 : 230 : MergeAppend *plan = (MergeAppend *) mstate->ps.plan;
2618 : :
4665 2619 : 230 : show_sort_group_keys((PlanState *) mstate, "Sort Key",
2620 : : plan->numCols, 0, plan->sortColIdx,
2621 : : plan->sortOperators, plan->collations,
2622 : : plan->nullsFirst,
2623 : : ancestors, es);
5820 2624 : 230 : }
2625 : :
2626 : : /*
2627 : : * Show the grouping keys for an Agg node.
2628 : : */
2629 : : static void
4665 2630 : 7275 : show_agg_keys(AggState *astate, List *ancestors,
2631 : : ExplainState *es)
2632 : : {
2633 : 7275 : Agg *plan = (Agg *) astate->ss.ps.plan;
2634 : :
4145 andres@anarazel.de 2635 [ + + + + ]: 7275 : if (plan->numCols > 0 || plan->groupingSets)
2636 : : {
2637 : : /* The key columns refer to the tlist of the child plan */
2475 tgl@sss.pgh.pa.us 2638 : 2241 : ancestors = lcons(plan, ancestors);
2639 : :
4145 andres@anarazel.de 2640 [ + + ]: 2241 : if (plan->groupingSets)
2641 : 219 : show_grouping_sets(outerPlanState(astate), plan, ancestors, es);
2642 : : else
2643 : 2022 : show_sort_group_keys(outerPlanState(astate), "Group Key",
2644 : : plan->numCols, 0, plan->grpColIdx,
2645 : : NULL, NULL, NULL,
2646 : : ancestors, es);
2647 : :
4665 tgl@sss.pgh.pa.us 2648 : 2241 : ancestors = list_delete_first(ancestors);
2649 : : }
2650 : 7275 : }
2651 : :
2652 : : static void
4145 andres@anarazel.de 2653 : 219 : show_grouping_sets(PlanState *planstate, Agg *agg,
2654 : : List *ancestors, ExplainState *es)
2655 : : {
2656 : : List *context;
2657 : : bool useprefix;
2658 : : ListCell *lc;
2659 : :
2660 : : /* Set up deparsing context */
2475 tgl@sss.pgh.pa.us 2661 : 219 : context = set_deparse_context_plan(es->deparse_cxt,
2662 : : planstate->plan,
2663 : : ancestors);
740 rguo@postgresql.org 2664 [ + + + + ]: 219 : useprefix = (es->rtable_size > 1 || es->verbose);
2665 : :
4145 andres@anarazel.de 2666 : 219 : ExplainOpenGroup("Grouping Sets", "Grouping Sets", false, es);
2667 : :
2668 : 219 : show_grouping_set_keys(planstate, agg, NULL,
2669 : : context, useprefix, ancestors, es);
2670 : :
2671 [ + + + + : 530 : foreach(lc, agg->chain)
+ + ]
2672 : : {
4138 bruce@momjian.us 2673 : 311 : Agg *aggnode = lfirst(lc);
2674 : 311 : Sort *sortnode = (Sort *) aggnode->plan.lefttree;
2675 : :
4145 andres@anarazel.de 2676 : 311 : show_grouping_set_keys(planstate, aggnode, sortnode,
2677 : : context, useprefix, ancestors, es);
2678 : : }
2679 : :
2680 : 219 : ExplainCloseGroup("Grouping Sets", "Grouping Sets", false, es);
2681 : 219 : }
2682 : :
2683 : : static void
2684 : 530 : show_grouping_set_keys(PlanState *planstate,
2685 : : Agg *aggnode, Sort *sortnode,
2686 : : List *context, bool useprefix,
2687 : : List *ancestors, ExplainState *es)
2688 : : {
2689 : 530 : Plan *plan = planstate->plan;
2690 : : char *exprstr;
2691 : : ListCell *lc;
2692 : 530 : List *gsets = aggnode->groupingSets;
2693 : 530 : AttrNumber *keycols = aggnode->grpColIdx;
2694 : : const char *keyname;
2695 : : const char *keysetname;
2696 : :
3464 rhodiumtoad@postgres 2697 [ + + + + ]: 530 : if (aggnode->aggstrategy == AGG_HASHED || aggnode->aggstrategy == AGG_MIXED)
2698 : : {
2699 : 328 : keyname = "Hash Key";
2700 : 328 : keysetname = "Hash Keys";
2701 : : }
2702 : : else
2703 : : {
2704 : 202 : keyname = "Group Key";
2705 : 202 : keysetname = "Group Keys";
2706 : : }
2707 : :
4145 andres@anarazel.de 2708 : 530 : ExplainOpenGroup("Grouping Set", NULL, true, es);
2709 : :
2710 [ + + ]: 530 : if (sortnode)
2711 : : {
2712 : 52 : show_sort_group_keys(planstate, "Sort Key",
2713 : : sortnode->numCols, 0, sortnode->sortColIdx,
2714 : : sortnode->sortOperators, sortnode->collations,
2715 : : sortnode->nullsFirst,
2716 : : ancestors, es);
2717 [ + - ]: 52 : if (es->format == EXPLAIN_FORMAT_TEXT)
2718 : 52 : es->indent++;
2719 : : }
2720 : :
3464 rhodiumtoad@postgres 2721 : 530 : ExplainOpenGroup(keysetname, keysetname, false, es);
2722 : :
4145 andres@anarazel.de 2723 [ + - + + : 1136 : foreach(lc, gsets)
+ + ]
2724 : : {
2725 : 606 : List *result = NIL;
2726 : : ListCell *lc2;
2727 : :
2728 [ + + + + : 1238 : foreach(lc2, (List *) lfirst(lc))
+ + ]
2729 : : {
2730 : 632 : Index i = lfirst_int(lc2);
2731 : 632 : AttrNumber keyresno = keycols[i];
2732 : 632 : TargetEntry *target = get_tle_by_resno(plan->targetlist,
2733 : : keyresno);
2734 : :
2735 [ - + ]: 632 : if (!target)
4145 andres@anarazel.de 2736 [ # # ]:UBC 0 : elog(ERROR, "no tlist entry for key %d", keyresno);
2737 : : /* Deparse the expression, showing any top-level cast */
4145 andres@anarazel.de 2738 :CBC 632 : exprstr = deparse_expression((Node *) target->expr, context,
2739 : : useprefix, true);
2740 : :
2741 : 632 : result = lappend(result, exprstr);
2742 : : }
2743 : :
2744 [ + + + - ]: 606 : if (!result && es->format == EXPLAIN_FORMAT_TEXT)
3464 rhodiumtoad@postgres 2745 : 106 : ExplainPropertyText(keyname, "()", es);
2746 : : else
2747 : 500 : ExplainPropertyListNested(keyname, result, es);
2748 : : }
2749 : :
2750 : 530 : ExplainCloseGroup(keysetname, keysetname, false, es);
2751 : :
4145 andres@anarazel.de 2752 [ + + + - ]: 530 : if (sortnode && es->format == EXPLAIN_FORMAT_TEXT)
2753 : 52 : es->indent--;
2754 : :
2755 : 530 : ExplainCloseGroup("Grouping Set", NULL, true, es);
2756 : 530 : }
2757 : :
2758 : : /*
2759 : : * Show the grouping keys for a Group node.
2760 : : */
2761 : : static void
4665 tgl@sss.pgh.pa.us 2762 : 72 : show_group_keys(GroupState *gstate, List *ancestors,
2763 : : ExplainState *es)
2764 : : {
2765 : 72 : Group *plan = (Group *) gstate->ss.ps.plan;
2766 : :
2767 : : /* The key columns refer to the tlist of the child plan */
2475 2768 : 72 : ancestors = lcons(plan, ancestors);
4665 2769 : 72 : show_sort_group_keys(outerPlanState(gstate), "Group Key",
2770 : : plan->numCols, 0, plan->grpColIdx,
2771 : : NULL, NULL, NULL,
2772 : : ancestors, es);
2773 : 72 : ancestors = list_delete_first(ancestors);
2774 : 72 : }
2775 : :
2776 : : /*
2777 : : * Common code to show sort/group keys, which are represented in plan nodes
2778 : : * as arrays of targetlist indexes. If it's a sort key rather than a group
2779 : : * key, also pass sort operators/collations/nullsFirst arrays.
2780 : : */
2781 : : static void
2782 : 6134 : show_sort_group_keys(PlanState *planstate, const char *qlabel,
2783 : : int nkeys, int nPresortedKeys, AttrNumber *keycols,
2784 : : Oid *sortOperators, Oid *collations, bool *nullsFirst,
2785 : : List *ancestors, ExplainState *es)
2786 : : {
5820 2787 : 6134 : Plan *plan = planstate->plan;
2788 : : List *context;
6250 2789 : 6134 : List *result = NIL;
2358 tomas.vondra@postgre 2790 : 6134 : List *resultPresorted = NIL;
2791 : : StringInfoData sortkeybuf;
2792 : : bool useprefix;
2793 : : int keyno;
2794 : :
8891 tgl@sss.pgh.pa.us 2795 [ - + ]: 6134 : if (nkeys <= 0)
8891 tgl@sss.pgh.pa.us 2796 :UBC 0 : return;
2797 : :
4265 tgl@sss.pgh.pa.us 2798 :CBC 6134 : initStringInfo(&sortkeybuf);
2799 : :
2800 : : /* Set up deparsing context */
2475 2801 : 6134 : context = set_deparse_context_plan(es->deparse_cxt,
2802 : : plan,
2803 : : ancestors);
740 rguo@postgresql.org 2804 [ + + + + ]: 6134 : useprefix = (es->rtable_size > 1 || es->verbose);
2805 : :
8538 tgl@sss.pgh.pa.us 2806 [ + + ]: 15068 : for (keyno = 0; keyno < nkeys; keyno++)
2807 : : {
2808 : : /* find key expression in tlist */
2809 : 8934 : AttrNumber keyresno = keycols[keyno];
5820 2810 : 8934 : TargetEntry *target = get_tle_by_resno(plan->targetlist,
2811 : : keyresno);
2812 : : char *exprstr;
2813 : :
8441 2814 [ - + ]: 8934 : if (!target)
8463 tgl@sss.pgh.pa.us 2815 [ # # ]:UBC 0 : elog(ERROR, "no tlist entry for key %d", keyresno);
2816 : : /* Deparse the expression, showing any top-level cast */
8441 tgl@sss.pgh.pa.us 2817 :CBC 8934 : exprstr = deparse_expression((Node *) target->expr, context,
2818 : : useprefix, true);
4265 2819 : 8934 : resetStringInfo(&sortkeybuf);
2820 : 8934 : appendStringInfoString(&sortkeybuf, exprstr);
2821 : : /* Append sort order information, if relevant */
2822 [ + + ]: 8934 : if (sortOperators != NULL)
2823 : 5733 : show_sortorder_options(&sortkeybuf,
2824 : 5733 : (Node *) target->expr,
2825 : 5733 : sortOperators[keyno],
2826 : 5733 : collations[keyno],
2827 : 5733 : nullsFirst[keyno]);
2828 : : /* Emit one property-list item per sort key */
2829 : 8934 : result = lappend(result, pstrdup(sortkeybuf.data));
2358 tomas.vondra@postgre 2830 [ + + ]: 8934 : if (keyno < nPresortedKeys)
2831 : 284 : resultPresorted = lappend(resultPresorted, exprstr);
2832 : : }
2833 : :
4665 tgl@sss.pgh.pa.us 2834 : 6134 : ExplainPropertyList(qlabel, result, es);
2358 tomas.vondra@postgre 2835 [ + + ]: 6134 : if (nPresortedKeys > 0)
2836 : 260 : ExplainPropertyList("Presorted Key", resultPresorted, es);
2837 : : }
2838 : :
2839 : : /*
2840 : : * Append nondefault characteristics of the sort ordering of a column to buf
2841 : : * (collation, direction, NULLS FIRST/LAST)
2842 : : */
2843 : : static void
4265 tgl@sss.pgh.pa.us 2844 : 5733 : show_sortorder_options(StringInfo buf, Node *sortexpr,
2845 : : Oid sortOperator, Oid collation, bool nullsFirst)
2846 : : {
2847 : 5733 : Oid sortcoltype = exprType(sortexpr);
2848 : 5733 : bool reverse = false;
2849 : : TypeCacheEntry *typentry;
2850 : :
2851 : 5733 : typentry = lookup_type_cache(sortcoltype,
2852 : : TYPECACHE_LT_OPR | TYPECACHE_GT_OPR);
2853 : :
2854 : : /*
2855 : : * Print COLLATE if it's not default for the column's type. There are
2856 : : * some cases where this is redundant, eg if expression is a column whose
2857 : : * declared collation is that collation, but it's hard to distinguish that
2858 : : * here (and arguably, printing COLLATE explicitly is a good idea anyway
2859 : : * in such cases).
2860 : : */
2832 2861 [ + + + + ]: 5733 : if (OidIsValid(collation) && collation != get_typcollation(sortcoltype))
2862 : : {
4265 2863 : 161 : char *collname = get_collation_name(collation);
2864 : :
2865 [ - + ]: 161 : if (collname == NULL)
4265 tgl@sss.pgh.pa.us 2866 [ # # ]:UBC 0 : elog(ERROR, "cache lookup failed for collation %u", collation);
4265 tgl@sss.pgh.pa.us 2867 :CBC 161 : appendStringInfo(buf, " COLLATE %s", quote_identifier(collname));
2868 : : }
2869 : :
2870 : : /* Print direction if not ASC, or USING if non-default sort operator */
2871 [ + + ]: 5733 : if (sortOperator == typentry->gt_opr)
2872 : : {
2873 : 170 : appendStringInfoString(buf, " DESC");
2874 : 170 : reverse = true;
2875 : : }
2876 [ + + ]: 5563 : else if (sortOperator != typentry->lt_opr)
2877 : : {
2878 : 20 : char *opname = get_opname(sortOperator);
2879 : :
2880 [ - + ]: 20 : if (opname == NULL)
4265 tgl@sss.pgh.pa.us 2881 [ # # ]:UBC 0 : elog(ERROR, "cache lookup failed for operator %u", sortOperator);
4265 tgl@sss.pgh.pa.us 2882 :CBC 20 : appendStringInfo(buf, " USING %s", opname);
2883 : : /* Determine whether operator would be considered ASC or DESC */
2884 : 20 : (void) get_equality_op_for_ordering_op(sortOperator, &reverse);
2885 : : }
2886 : :
2887 : : /* Add NULLS FIRST/LAST only if it wouldn't be default */
2888 [ + + + + ]: 5733 : if (nullsFirst && !reverse)
2889 : : {
2890 : 24 : appendStringInfoString(buf, " NULLS FIRST");
2891 : : }
2892 [ + + - + ]: 5709 : else if (!nullsFirst && reverse)
2893 : : {
4265 tgl@sss.pgh.pa.us 2894 :UBC 0 : appendStringInfoString(buf, " NULLS LAST");
2895 : : }
4265 tgl@sss.pgh.pa.us 2896 :CBC 5733 : }
2897 : :
2898 : : /*
2899 : : * Show the window definition for a WindowAgg node.
2900 : : */
2901 : : static void
558 2902 : 380 : show_window_def(WindowAggState *planstate, List *ancestors, ExplainState *es)
2903 : : {
2904 : 380 : WindowAgg *wagg = (WindowAgg *) planstate->ss.ps.plan;
2905 : : StringInfoData wbuf;
2906 : 380 : bool needspace = false;
2907 : :
2908 : 380 : initStringInfo(&wbuf);
2909 : 380 : appendStringInfo(&wbuf, "%s AS (", quote_identifier(wagg->winname));
2910 : :
2911 : : /* The key columns refer to the tlist of the child plan */
2912 : 380 : ancestors = lcons(wagg, ancestors);
2913 [ + + ]: 380 : if (wagg->partNumCols > 0)
2914 : : {
2915 : 171 : appendStringInfoString(&wbuf, "PARTITION BY ");
2916 : 171 : show_window_keys(&wbuf, outerPlanState(planstate),
2917 : : wagg->partNumCols, wagg->partColIdx,
2918 : : ancestors, es);
2919 : 171 : needspace = true;
2920 : : }
2921 [ + + ]: 380 : if (wagg->ordNumCols > 0)
2922 : : {
2923 [ + + ]: 266 : if (needspace)
2924 : 106 : appendStringInfoChar(&wbuf, ' ');
2925 : 266 : appendStringInfoString(&wbuf, "ORDER BY ");
2926 : 266 : show_window_keys(&wbuf, outerPlanState(planstate),
2927 : : wagg->ordNumCols, wagg->ordColIdx,
2928 : : ancestors, es);
2929 : 266 : needspace = true;
2930 : : }
2931 : 380 : ancestors = list_delete_first(ancestors);
2932 [ + + ]: 380 : if (wagg->frameOptions & FRAMEOPTION_NONDEFAULT)
2933 : : {
2934 : : List *context;
2935 : : bool useprefix;
2936 : : char *framestr;
2937 : :
2938 : : /* Set up deparsing context for possible frame expressions */
2939 : 190 : context = set_deparse_context_plan(es->deparse_cxt,
2940 : : (Plan *) wagg,
2941 : : ancestors);
2942 [ + + + + ]: 190 : useprefix = (es->rtable_size > 1 || es->verbose);
2943 : 190 : framestr = get_window_frame_options_for_explain(wagg->frameOptions,
2944 : : wagg->startOffset,
2945 : : wagg->endOffset,
2946 : : context,
2947 : : useprefix);
2948 [ + + ]: 190 : if (needspace)
2949 : 165 : appendStringInfoChar(&wbuf, ' ');
2950 : 190 : appendStringInfoString(&wbuf, framestr);
2951 : 190 : pfree(framestr);
2952 : : }
2953 : 380 : appendStringInfoChar(&wbuf, ')');
2954 : 380 : ExplainPropertyText("Window", wbuf.data, es);
2955 : 380 : pfree(wbuf.data);
2956 : 380 : }
2957 : :
2958 : : /*
2959 : : * Append the keys of a window's PARTITION BY or ORDER BY clause to buf.
2960 : : * We can't use show_sort_group_keys for this because that's too opinionated
2961 : : * about how the result will be displayed.
2962 : : * Note that the "planstate" node should be the WindowAgg's child.
2963 : : */
2964 : : static void
2965 : 437 : show_window_keys(StringInfo buf, PlanState *planstate,
2966 : : int nkeys, AttrNumber *keycols,
2967 : : List *ancestors, ExplainState *es)
2968 : : {
2969 : 437 : Plan *plan = planstate->plan;
2970 : : List *context;
2971 : : bool useprefix;
2972 : :
2973 : : /* Set up deparsing context */
2974 : 437 : context = set_deparse_context_plan(es->deparse_cxt,
2975 : : plan,
2976 : : ancestors);
2977 [ + + + + ]: 437 : useprefix = (es->rtable_size > 1 || es->verbose);
2978 : :
2979 [ + + ]: 894 : for (int keyno = 0; keyno < nkeys; keyno++)
2980 : : {
2981 : : /* find key expression in tlist */
2982 : 457 : AttrNumber keyresno = keycols[keyno];
2983 : 457 : TargetEntry *target = get_tle_by_resno(plan->targetlist,
2984 : : keyresno);
2985 : : char *exprstr;
2986 : :
2987 [ - + ]: 457 : if (!target)
558 tgl@sss.pgh.pa.us 2988 [ # # ]:UBC 0 : elog(ERROR, "no tlist entry for key %d", keyresno);
2989 : : /* Deparse the expression, showing any top-level cast */
558 tgl@sss.pgh.pa.us 2990 :CBC 457 : exprstr = deparse_expression((Node *) target->expr, context,
2991 : : useprefix, true);
2992 [ + + ]: 457 : if (keyno > 0)
2993 : 20 : appendStringInfoString(buf, ", ");
2994 : 457 : appendStringInfoString(buf, exprstr);
2995 : 457 : pfree(exprstr);
2996 : :
2997 : : /*
2998 : : * We don't attempt to provide sort order information because
2999 : : * WindowAgg carries equality operators not comparison operators;
3000 : : * compare show_agg_keys.
3001 : : */
3002 : : }
3003 : 437 : }
3004 : :
3005 : : /*
3006 : : * Show information on storage method and maximum memory/disk space used.
3007 : : */
3008 : : static void
727 ishii@postgresql.org 3009 : 20 : show_storage_info(char *maxStorageType, int64 maxSpaceUsed, ExplainState *es)
3010 : : {
3011 : 20 : int64 maxSpaceUsedKB = BYTES_TO_KILOBYTES(maxSpaceUsed);
3012 : :
733 3013 [ - + ]: 20 : if (es->format != EXPLAIN_FORMAT_TEXT)
3014 : : {
733 ishii@postgresql.org 3015 :UBC 0 : ExplainPropertyText("Storage", maxStorageType, es);
3016 : 0 : ExplainPropertyInteger("Maximum Storage", "kB", maxSpaceUsedKB, es);
3017 : : }
3018 : : else
3019 : : {
733 ishii@postgresql.org 3020 :CBC 20 : ExplainIndentText(es);
3021 : 20 : appendStringInfo(es->str,
3022 : : "Storage: %s Maximum Storage: " INT64_FORMAT "kB\n",
3023 : : maxStorageType,
3024 : : maxSpaceUsedKB);
3025 : : }
3026 : 20 : }
3027 : :
3028 : : /*
3029 : : * Show TABLESAMPLE properties
3030 : : */
3031 : : static void
4075 tgl@sss.pgh.pa.us 3032 : 81 : show_tablesample(TableSampleClause *tsc, PlanState *planstate,
3033 : : List *ancestors, ExplainState *es)
3034 : : {
3035 : : List *context;
3036 : : bool useprefix;
3037 : : char *method_name;
3038 : 81 : List *params = NIL;
3039 : : char *repeatable;
3040 : : ListCell *lc;
3041 : :
3042 : : /* Set up deparsing context */
2475 3043 : 81 : context = set_deparse_context_plan(es->deparse_cxt,
3044 : : planstate->plan,
3045 : : ancestors);
740 rguo@postgresql.org 3046 : 81 : useprefix = es->rtable_size > 1;
3047 : :
3048 : : /* Get the tablesample method name */
4075 tgl@sss.pgh.pa.us 3049 : 81 : method_name = get_func_name(tsc->tsmhandler);
3050 : :
3051 : : /* Deparse parameter expressions */
3052 [ + - + + : 162 : foreach(lc, tsc->args)
+ + ]
3053 : : {
3054 : 81 : Node *arg = (Node *) lfirst(lc);
3055 : :
3056 : 81 : params = lappend(params,
3057 : 81 : deparse_expression(arg, context,
3058 : : useprefix, false));
3059 : : }
3060 [ + + ]: 81 : if (tsc->repeatable)
3061 : 40 : repeatable = deparse_expression((Node *) tsc->repeatable, context,
3062 : : useprefix, false);
3063 : : else
3064 : 41 : repeatable = NULL;
3065 : :
3066 : : /* Print results */
3067 [ + - ]: 81 : if (es->format == EXPLAIN_FORMAT_TEXT)
3068 : : {
3069 : 81 : bool first = true;
3070 : :
2430 3071 : 81 : ExplainIndentText(es);
4075 3072 : 81 : appendStringInfo(es->str, "Sampling: %s (", method_name);
3073 [ + - + + : 162 : foreach(lc, params)
+ + ]
3074 : : {
3075 [ - + ]: 81 : if (!first)
4075 tgl@sss.pgh.pa.us 3076 :UBC 0 : appendStringInfoString(es->str, ", ");
4075 tgl@sss.pgh.pa.us 3077 :CBC 81 : appendStringInfoString(es->str, (const char *) lfirst(lc));
3078 : 81 : first = false;
3079 : : }
3080 : 81 : appendStringInfoChar(es->str, ')');
3081 [ + + ]: 81 : if (repeatable)
3082 : 40 : appendStringInfo(es->str, " REPEATABLE (%s)", repeatable);
3083 : 81 : appendStringInfoChar(es->str, '\n');
3084 : : }
3085 : : else
3086 : : {
4075 tgl@sss.pgh.pa.us 3087 :UBC 0 : ExplainPropertyText("Sampling Method", method_name, es);
3088 : 0 : ExplainPropertyList("Sampling Parameters", params, es);
3089 [ # # ]: 0 : if (repeatable)
3090 : 0 : ExplainPropertyText("Repeatable Seed", repeatable, es);
3091 : : }
4075 tgl@sss.pgh.pa.us 3092 :CBC 81 : }
3093 : :
3094 : : /*
3095 : : * If it's EXPLAIN ANALYZE, show tuplesort stats for a sort node
3096 : : */
3097 : : static void
6250 3098 : 3498 : show_sort_info(SortState *sortstate, ExplainState *es)
3099 : : {
3309 rhaas@postgresql.org 3100 [ + + ]: 3498 : if (!es->analyze)
3101 : 3390 : return;
3102 : :
3103 [ + + + - ]: 108 : if (sortstate->sort_Done && sortstate->tuplesortstate != NULL)
3104 : : {
6050 bruce@momjian.us 3105 : 104 : Tuplesortstate *state = (Tuplesortstate *) sortstate->tuplesortstate;
3106 : : TuplesortInstrumentation stats;
3107 : : const char *sortMethod;
3108 : : const char *spaceType;
3109 : : int64 spaceUsed;
3110 : :
3309 rhaas@postgresql.org 3111 : 104 : tuplesort_get_stats(state, &stats);
3112 : 104 : sortMethod = tuplesort_method_name(stats.sortMethod);
3113 : 104 : spaceType = tuplesort_space_type_name(stats.spaceType);
3114 : 104 : spaceUsed = stats.spaceUsed;
3115 : :
6250 tgl@sss.pgh.pa.us 3116 [ + + ]: 104 : if (es->format == EXPLAIN_FORMAT_TEXT)
3117 : : {
2430 3118 : 84 : ExplainIndentText(es);
2240 drowley@postgresql.o 3119 : 84 : appendStringInfo(es->str, "Sort Method: %s %s: " INT64_FORMAT "kB\n",
3120 : : sortMethod, spaceType, spaceUsed);
3121 : : }
3122 : : else
3123 : : {
6250 tgl@sss.pgh.pa.us 3124 : 20 : ExplainPropertyText("Sort Method", sortMethod, es);
3110 andres@anarazel.de 3125 : 20 : ExplainPropertyInteger("Sort Space Used", "kB", spaceUsed, es);
6250 tgl@sss.pgh.pa.us 3126 : 20 : ExplainPropertyText("Sort Space Type", spaceType, es);
3127 : : }
3128 : : }
3129 : :
3130 : : /*
3131 : : * You might think we should just skip this stanza entirely when
3132 : : * es->hide_workers is true, but then we'd get no sort-method output at
3133 : : * all. We have to make it look like worker 0's data is top-level data.
3134 : : * This is easily done by just skipping the OpenWorker/CloseWorker calls.
3135 : : * Currently, we don't worry about the possibility that there are multiple
3136 : : * workers in such a case; if there are, duplicate output fields will be
3137 : : * emitted.
3138 : : */
3309 rhaas@postgresql.org 3139 [ + + ]: 108 : if (sortstate->shared_info != NULL)
3140 : : {
3141 : : int n;
3142 : :
3143 [ + + ]: 40 : for (n = 0; n < sortstate->shared_info->num_workers; n++)
3144 : : {
3145 : : TuplesortInstrumentation *sinstrument;
3146 : : const char *sortMethod;
3147 : : const char *spaceType;
3148 : : int64 spaceUsed;
3149 : :
3150 : 32 : sinstrument = &sortstate->shared_info->sinstrument[n];
3151 [ - + ]: 32 : if (sinstrument->sortMethod == SORT_TYPE_STILL_IN_PROGRESS)
3309 rhaas@postgresql.org 3152 :UBC 0 : continue; /* ignore any unfilled slots */
3309 rhaas@postgresql.org 3153 :CBC 32 : sortMethod = tuplesort_method_name(sinstrument->sortMethod);
3154 : 32 : spaceType = tuplesort_space_type_name(sinstrument->spaceType);
3155 : 32 : spaceUsed = sinstrument->spaceUsed;
3156 : :
2430 tgl@sss.pgh.pa.us 3157 [ + - ]: 32 : if (es->workers_state)
3158 : 32 : ExplainOpenWorker(n, es);
3159 : :
3309 rhaas@postgresql.org 3160 [ + + ]: 32 : if (es->format == EXPLAIN_FORMAT_TEXT)
3161 : : {
2430 tgl@sss.pgh.pa.us 3162 : 16 : ExplainIndentText(es);
3309 rhaas@postgresql.org 3163 : 16 : appendStringInfo(es->str,
3164 : : "Sort Method: %s %s: " INT64_FORMAT "kB\n",
3165 : : sortMethod, spaceType, spaceUsed);
3166 : : }
3167 : : else
3168 : : {
3169 : 16 : ExplainPropertyText("Sort Method", sortMethod, es);
3110 andres@anarazel.de 3170 : 16 : ExplainPropertyInteger("Sort Space Used", "kB", spaceUsed, es);
3309 rhaas@postgresql.org 3171 : 16 : ExplainPropertyText("Sort Space Type", spaceType, es);
3172 : : }
3173 : :
2430 tgl@sss.pgh.pa.us 3174 [ + - ]: 32 : if (es->workers_state)
3175 : 32 : ExplainCloseWorker(n, es);
3176 : : }
3177 : : }
3178 : : }
3179 : :
3180 : : /*
3181 : : * Incremental sort nodes sort in (a potentially very large number of) batches,
3182 : : * so EXPLAIN ANALYZE needs to roll up the tuplesort stats from each batch into
3183 : : * an intelligible summary.
3184 : : *
3185 : : * This function is used for both a non-parallel node and each worker in a
3186 : : * parallel incremental sort node.
3187 : : */
3188 : : static void
2358 tomas.vondra@postgre 3189 : 36 : show_incremental_sort_group_info(IncrementalSortGroupInfo *groupInfo,
3190 : : const char *groupLabel, bool indent, ExplainState *es)
3191 : : {
3192 : : ListCell *methodCell;
3193 : 36 : List *methodNames = NIL;
3194 : :
3195 : : /* Generate a list of sort methods used across all groups. */
tgl@sss.pgh.pa.us 3196 [ + + ]: 180 : for (int bit = 0; bit < NUM_TUPLESORTMETHODS; bit++)
3197 : : {
3198 : 144 : TuplesortMethod sortMethod = (1 << bit);
3199 : :
3200 [ + + ]: 144 : if (groupInfo->sortMethods & sortMethod)
3201 : : {
3202 : 60 : const char *methodName = tuplesort_method_name(sortMethod);
3203 : :
tomas.vondra@postgre 3204 : 60 : methodNames = lappend(methodNames, unconstify(char *, methodName));
3205 : : }
3206 : : }
3207 : :
3208 [ + + ]: 36 : if (es->format == EXPLAIN_FORMAT_TEXT)
3209 : : {
3210 [ + - ]: 12 : if (indent)
3211 : 12 : appendStringInfoSpaces(es->str, es->indent * 2);
2322 3212 : 12 : appendStringInfo(es->str, "%s Groups: " INT64_FORMAT " Sort Method", groupLabel,
3213 : : groupInfo->groupCount);
3214 : : /* plural/singular based on methodNames size */
2358 3215 [ + + ]: 12 : if (list_length(methodNames) > 1)
2166 drowley@postgresql.o 3216 : 8 : appendStringInfoString(es->str, "s: ");
3217 : : else
3218 : 4 : appendStringInfoString(es->str, ": ");
2358 tomas.vondra@postgre 3219 [ + - + + : 32 : foreach(methodCell, methodNames)
+ + ]
3220 : : {
2166 drowley@postgresql.o 3221 : 20 : appendStringInfoString(es->str, (char *) methodCell->ptr_value);
2358 tomas.vondra@postgre 3222 [ + + ]: 20 : if (foreach_current_index(methodCell) < list_length(methodNames) - 1)
2166 drowley@postgresql.o 3223 : 8 : appendStringInfoString(es->str, ", ");
3224 : : }
3225 : :
2358 tomas.vondra@postgre 3226 [ + - ]: 12 : if (groupInfo->maxMemorySpaceUsed > 0)
3227 : : {
2240 drowley@postgresql.o 3228 : 12 : int64 avgSpace = groupInfo->totalMemorySpaceUsed / groupInfo->groupCount;
3229 : : const char *spaceTypeName;
3230 : :
2358 tomas.vondra@postgre 3231 : 12 : spaceTypeName = tuplesort_space_type_name(SORT_SPACE_TYPE_MEMORY);
2240 drowley@postgresql.o 3232 : 12 : appendStringInfo(es->str, " Average %s: " INT64_FORMAT "kB Peak %s: " INT64_FORMAT "kB",
3233 : : spaceTypeName, avgSpace,
3234 : : spaceTypeName, groupInfo->maxMemorySpaceUsed);
3235 : : }
3236 : :
2358 tomas.vondra@postgre 3237 [ - + ]: 12 : if (groupInfo->maxDiskSpaceUsed > 0)
3238 : : {
2240 drowley@postgresql.o 3239 :UBC 0 : int64 avgSpace = groupInfo->totalDiskSpaceUsed / groupInfo->groupCount;
3240 : :
3241 : : const char *spaceTypeName;
3242 : :
2358 tomas.vondra@postgre 3243 : 0 : spaceTypeName = tuplesort_space_type_name(SORT_SPACE_TYPE_DISK);
2240 drowley@postgresql.o 3244 : 0 : appendStringInfo(es->str, " Average %s: " INT64_FORMAT "kB Peak %s: " INT64_FORMAT "kB",
3245 : : spaceTypeName, avgSpace,
3246 : : spaceTypeName, groupInfo->maxDiskSpaceUsed);
3247 : : }
3248 : : }
3249 : : else
3250 : : {
3251 : : StringInfoData groupName;
3252 : :
2358 tomas.vondra@postgre 3253 :CBC 24 : initStringInfo(&groupName);
3254 : 24 : appendStringInfo(&groupName, "%s Groups", groupLabel);
3255 : 24 : ExplainOpenGroup("Incremental Sort Groups", groupName.data, true, es);
3256 : 24 : ExplainPropertyInteger("Group Count", NULL, groupInfo->groupCount, es);
3257 : :
3258 : 24 : ExplainPropertyList("Sort Methods Used", methodNames, es);
3259 : :
3260 [ + - ]: 24 : if (groupInfo->maxMemorySpaceUsed > 0)
3261 : : {
2240 drowley@postgresql.o 3262 : 24 : int64 avgSpace = groupInfo->totalMemorySpaceUsed / groupInfo->groupCount;
3263 : : const char *spaceTypeName;
3264 : : StringInfoData memoryName;
3265 : :
2358 tomas.vondra@postgre 3266 : 24 : spaceTypeName = tuplesort_space_type_name(SORT_SPACE_TYPE_MEMORY);
3267 : 24 : initStringInfo(&memoryName);
3268 : 24 : appendStringInfo(&memoryName, "Sort Space %s", spaceTypeName);
3269 : 24 : ExplainOpenGroup("Sort Space", memoryName.data, true, es);
3270 : :
3271 : 24 : ExplainPropertyInteger("Average Sort Space Used", "kB", avgSpace, es);
2357 3272 : 24 : ExplainPropertyInteger("Peak Sort Space Used", "kB",
3273 : : groupInfo->maxMemorySpaceUsed, es);
3274 : :
2158 tgl@sss.pgh.pa.us 3275 : 24 : ExplainCloseGroup("Sort Space", memoryName.data, true, es);
3276 : : }
2358 tomas.vondra@postgre 3277 [ - + ]: 24 : if (groupInfo->maxDiskSpaceUsed > 0)
3278 : : {
2240 drowley@postgresql.o 3279 :UBC 0 : int64 avgSpace = groupInfo->totalDiskSpaceUsed / groupInfo->groupCount;
3280 : : const char *spaceTypeName;
3281 : : StringInfoData diskName;
3282 : :
2358 tomas.vondra@postgre 3283 : 0 : spaceTypeName = tuplesort_space_type_name(SORT_SPACE_TYPE_DISK);
3284 : 0 : initStringInfo(&diskName);
3285 : 0 : appendStringInfo(&diskName, "Sort Space %s", spaceTypeName);
3286 : 0 : ExplainOpenGroup("Sort Space", diskName.data, true, es);
3287 : :
3288 : 0 : ExplainPropertyInteger("Average Sort Space Used", "kB", avgSpace, es);
2357 3289 : 0 : ExplainPropertyInteger("Peak Sort Space Used", "kB",
3290 : : groupInfo->maxDiskSpaceUsed, es);
3291 : :
2158 tgl@sss.pgh.pa.us 3292 : 0 : ExplainCloseGroup("Sort Space", diskName.data, true, es);
3293 : : }
3294 : :
2358 tomas.vondra@postgre 3295 :CBC 24 : ExplainCloseGroup("Incremental Sort Groups", groupName.data, true, es);
3296 : : }
3297 : 36 : }
3298 : :
3299 : : /*
3300 : : * If it's EXPLAIN ANALYZE, show tuplesort stats for an incremental sort node
3301 : : */
3302 : : static void
3303 : 260 : show_incremental_sort_info(IncrementalSortState *incrsortstate,
3304 : : ExplainState *es)
3305 : : {
40 drowley@postgresql.o 3306 :GNC 260 : IncrementalSort *plan = (IncrementalSort *) incrsortstate->ss.ps.plan;
3307 : : IncrementalSortGroupInfo *fullsortGroupInfo;
3308 : : IncrementalSortGroupInfo *prefixsortGroupInfo;
3309 : :
2358 tomas.vondra@postgre 3310 :CBC 260 : fullsortGroupInfo = &incrsortstate->incsort_info.fullsortGroupInfo;
3311 : :
40 drowley@postgresql.o 3312 [ + + ]:GNC 260 : if (es->costs)
3313 : 4 : ExplainPropertyFloat("Estimated Groups", NULL,
3314 : : plan->numGroups, 0, es);
3315 : :
2358 tomas.vondra@postgre 3316 [ + + ]:CBC 260 : if (!es->analyze)
3317 : 236 : return;
3318 : :
3319 : : /*
3320 : : * Since we never have any prefix groups unless we've first sorted a full
3321 : : * groups and transitioned modes (copying the tuples into a prefix group),
3322 : : * we don't need to do anything if there were 0 full groups.
3323 : : *
3324 : : * We still have to continue after this block if there are no full groups,
3325 : : * though, since it's possible that we have workers that did real work
3326 : : * even if the leader didn't participate.
3327 : : */
3328 [ + - ]: 24 : if (fullsortGroupInfo->groupCount > 0)
3329 : : {
3330 : 24 : show_incremental_sort_group_info(fullsortGroupInfo, "Full-sort", true, es);
3331 : 24 : prefixsortGroupInfo = &incrsortstate->incsort_info.prefixsortGroupInfo;
3332 [ + + ]: 24 : if (prefixsortGroupInfo->groupCount > 0)
3333 : : {
3334 [ + + ]: 12 : if (es->format == EXPLAIN_FORMAT_TEXT)
2166 drowley@postgresql.o 3335 : 4 : appendStringInfoChar(es->str, '\n');
2322 tomas.vondra@postgre 3336 : 12 : show_incremental_sort_group_info(prefixsortGroupInfo, "Pre-sorted", true, es);
3337 : : }
2358 3338 [ + + ]: 24 : if (es->format == EXPLAIN_FORMAT_TEXT)
2166 drowley@postgresql.o 3339 : 8 : appendStringInfoChar(es->str, '\n');
3340 : : }
3341 : :
2358 tomas.vondra@postgre 3342 [ - + ]: 24 : if (incrsortstate->shared_info != NULL)
3343 : : {
3344 : : int n;
3345 : : bool indent_first_line;
3346 : :
2358 tomas.vondra@postgre 3347 [ # # ]:UBC 0 : for (n = 0; n < incrsortstate->shared_info->num_workers; n++)
3348 : : {
3349 : 0 : IncrementalSortInfo *incsort_info =
1220 tgl@sss.pgh.pa.us 3350 : 0 : &incrsortstate->shared_info->sinfo[n];
3351 : :
3352 : : /*
3353 : : * If a worker hasn't processed any sort groups at all, then
3354 : : * exclude it from output since it either didn't launch or didn't
3355 : : * contribute anything meaningful.
3356 : : */
2358 tomas.vondra@postgre 3357 : 0 : fullsortGroupInfo = &incsort_info->fullsortGroupInfo;
3358 : :
3359 : : /*
3360 : : * Since we never have any prefix groups unless we've first sorted
3361 : : * a full groups and transitioned modes (copying the tuples into a
3362 : : * prefix group), we don't need to do anything if there were 0
3363 : : * full groups.
3364 : : */
2325 3365 [ # # ]: 0 : if (fullsortGroupInfo->groupCount == 0)
2358 3366 : 0 : continue;
3367 : :
3368 [ # # ]: 0 : if (es->workers_state)
3369 : 0 : ExplainOpenWorker(n, es);
3370 : :
3371 [ # # # # ]: 0 : indent_first_line = es->workers_state == NULL || es->verbose;
3372 : 0 : show_incremental_sort_group_info(fullsortGroupInfo, "Full-sort",
3373 : : indent_first_line, es);
2325 3374 : 0 : prefixsortGroupInfo = &incsort_info->prefixsortGroupInfo;
2358 3375 [ # # ]: 0 : if (prefixsortGroupInfo->groupCount > 0)
3376 : : {
3377 [ # # ]: 0 : if (es->format == EXPLAIN_FORMAT_TEXT)
2166 drowley@postgresql.o 3378 : 0 : appendStringInfoChar(es->str, '\n');
2322 tomas.vondra@postgre 3379 : 0 : show_incremental_sort_group_info(prefixsortGroupInfo, "Pre-sorted", true, es);
3380 : : }
2358 3381 [ # # ]: 0 : if (es->format == EXPLAIN_FORMAT_TEXT)
2166 drowley@postgresql.o 3382 : 0 : appendStringInfoChar(es->str, '\n');
3383 : :
2358 tomas.vondra@postgre 3384 [ # # ]: 0 : if (es->workers_state)
3385 : 0 : ExplainCloseWorker(n, es);
3386 : : }
3387 : : }
3388 : : }
3389 : :
3390 : : /*
3391 : : * Show information on hash buckets/batches.
3392 : : */
3393 : : static void
6075 rhaas@postgresql.org 3394 :CBC 3066 : show_hash_info(HashState *hashstate, ExplainState *es)
3395 : : {
3184 andres@anarazel.de 3396 : 3066 : HashInstrumentation hinstrument = {0};
3397 : :
3398 : : /*
3399 : : * Collect stats from the local process, even when it's a parallel query.
3400 : : * In a parallel query, the leader process may or may not have run the
3401 : : * hash join, and even if it did it may not have built a hash table due to
3402 : : * timing (if it started late it might have seen no tuples in the outer
3403 : : * relation and skipped building the hash table). Therefore we have to be
3404 : : * prepared to get instrumentation data from all participants.
3405 : : */
2353 tgl@sss.pgh.pa.us 3406 [ + + ]: 3066 : if (hashstate->hinstrument)
3407 : 79 : memcpy(&hinstrument, hashstate->hinstrument,
3408 : : sizeof(HashInstrumentation));
3409 : :
3410 : : /*
3411 : : * Merge results from workers. In the parallel-oblivious case, the
3412 : : * results from all participants should be identical, except where
3413 : : * participants didn't run the join at all so have no data. In the
3414 : : * parallel-aware case, we need to consider all the results. Each worker
3415 : : * may have seen a different subset of batches and we want to report the
3416 : : * highest memory usage across all batches. We take the maxima of other
3417 : : * values too, for the same reasons as in ExecHashAccumInstrumentation.
3418 : : */
3184 andres@anarazel.de 3419 [ + + ]: 3066 : if (hashstate->shared_info)
3420 : : {
3211 3421 : 56 : SharedHashInfo *shared_info = hashstate->shared_info;
3422 : : int i;
3423 : :
3424 [ + + ]: 160 : for (i = 0; i < shared_info->num_workers; ++i)
3425 : : {
3184 3426 : 104 : HashInstrumentation *worker_hi = &shared_info->hinstrument[i];
3427 : :
2353 tgl@sss.pgh.pa.us 3428 : 104 : hinstrument.nbuckets = Max(hinstrument.nbuckets,
3429 : : worker_hi->nbuckets);
3430 : 104 : hinstrument.nbuckets_original = Max(hinstrument.nbuckets_original,
3431 : : worker_hi->nbuckets_original);
3432 : 104 : hinstrument.nbatch = Max(hinstrument.nbatch,
3433 : : worker_hi->nbatch);
3434 : 104 : hinstrument.nbatch_original = Max(hinstrument.nbatch_original,
3435 : : worker_hi->nbatch_original);
3436 : 104 : hinstrument.space_peak = Max(hinstrument.space_peak,
3437 : : worker_hi->space_peak);
3438 : : }
3439 : : }
3440 : :
3184 andres@anarazel.de 3441 [ + + ]: 3066 : if (hinstrument.nbatch > 0)
3442 : : {
857 drowley@postgresql.o 3443 : 79 : uint64 spacePeakKb = BYTES_TO_KILOBYTES(hinstrument.space_peak);
3444 : :
6075 rhaas@postgresql.org 3445 [ + + ]: 79 : if (es->format != EXPLAIN_FORMAT_TEXT)
3446 : : {
3110 andres@anarazel.de 3447 : 72 : ExplainPropertyInteger("Hash Buckets", NULL,
3448 : 72 : hinstrument.nbuckets, es);
3449 : 72 : ExplainPropertyInteger("Original Hash Buckets", NULL,
3450 : 72 : hinstrument.nbuckets_original, es);
3451 : 72 : ExplainPropertyInteger("Hash Batches", NULL,
3452 : 72 : hinstrument.nbatch, es);
3453 : 72 : ExplainPropertyInteger("Original Hash Batches", NULL,
3454 : 72 : hinstrument.nbatch_original, es);
857 drowley@postgresql.o 3455 : 72 : ExplainPropertyUInteger("Peak Memory Usage", "kB",
3456 : : spacePeakKb, es);
3457 : : }
3184 andres@anarazel.de 3458 [ + - ]: 7 : else if (hinstrument.nbatch_original != hinstrument.nbatch ||
3459 [ - + ]: 7 : hinstrument.nbuckets_original != hinstrument.nbuckets)
3460 : : {
2430 tgl@sss.pgh.pa.us 3461 :UBC 0 : ExplainIndentText(es);
6075 rhaas@postgresql.org 3462 : 0 : appendStringInfo(es->str,
3463 : : "Buckets: %d (originally %d) Batches: %d (originally %d) Memory Usage: " UINT64_FORMAT "kB\n",
3464 : : hinstrument.nbuckets,
3465 : : hinstrument.nbuckets_original,
3466 : : hinstrument.nbatch,
3467 : : hinstrument.nbatch_original,
3468 : : spacePeakKb);
3469 : : }
3470 : : else
3471 : : {
2430 tgl@sss.pgh.pa.us 3472 :CBC 7 : ExplainIndentText(es);
6075 rhaas@postgresql.org 3473 : 7 : appendStringInfo(es->str,
3474 : : "Buckets: %d Batches: %d Memory Usage: " UINT64_FORMAT "kB\n",
3475 : : hinstrument.nbuckets, hinstrument.nbatch,
3476 : : spacePeakKb);
3477 : : }
3478 : : }
3479 : 3066 : }
3480 : :
3481 : : /*
3482 : : * Show information on material node, storage method and maximum memory/disk
3483 : : * space used.
3484 : : */
3485 : : static void
807 drowley@postgresql.o 3486 : 851 : show_material_info(MaterialState *mstate, ExplainState *es)
3487 : : {
3488 : : char *maxStorageType;
3489 : : int64 maxSpaceUsed;
3490 : :
3491 : 851 : Tuplestorestate *tupstore = mstate->tuplestorestate;
3492 : :
3493 : : /*
3494 : : * Nothing to show if ANALYZE option wasn't used or if execution didn't
3495 : : * get as far as creating the tuplestore.
3496 : : */
3497 [ + + - + ]: 851 : if (!es->analyze || tupstore == NULL)
3498 : 843 : return;
3499 : :
727 ishii@postgresql.org 3500 : 8 : tuplestore_get_stats(tupstore, &maxStorageType, &maxSpaceUsed);
3501 : 8 : show_storage_info(maxStorageType, maxSpaceUsed, es);
3502 : : }
3503 : :
3504 : : /*
3505 : : * Show information on WindowAgg node, storage method and maximum memory/disk
3506 : : * space used.
3507 : : */
3508 : : static void
733 3509 : 380 : show_windowagg_info(WindowAggState *winstate, ExplainState *es)
3510 : : {
3511 : : char *maxStorageType;
3512 : : int64 maxSpaceUsed;
3513 : :
3514 : 380 : Tuplestorestate *tupstore = winstate->buffer;
3515 : :
3516 : : /*
3517 : : * Nothing to show if ANALYZE option wasn't used or if execution didn't
3518 : : * get as far as creating the tuplestore.
3519 : : */
3520 [ + + - + ]: 380 : if (!es->analyze || tupstore == NULL)
3521 : 368 : return;
3522 : :
727 3523 : 12 : tuplestore_get_stats(tupstore, &maxStorageType, &maxSpaceUsed);
3524 : 12 : show_storage_info(maxStorageType, maxSpaceUsed, es);
3525 : : }
3526 : :
3527 : : /*
3528 : : * Show information on CTE Scan node, storage method and maximum memory/disk
3529 : : * space used.
3530 : : */
3531 : : static void
3532 : 183 : show_ctescan_info(CteScanState *ctescanstate, ExplainState *es)
3533 : : {
3534 : : char *maxStorageType;
3535 : : int64 maxSpaceUsed;
3536 : :
3537 : 183 : Tuplestorestate *tupstore = ctescanstate->leader->cte_table;
3538 : :
3539 [ - + - - ]: 183 : if (!es->analyze || tupstore == NULL)
3540 : 183 : return;
3541 : :
727 ishii@postgresql.org 3542 :UBC 0 : tuplestore_get_stats(tupstore, &maxStorageType, &maxSpaceUsed);
3543 : 0 : show_storage_info(maxStorageType, maxSpaceUsed, es);
3544 : : }
3545 : :
3546 : : /*
3547 : : * Show information on Table Function Scan node, storage method and maximum
3548 : : * memory/disk space used.
3549 : : */
3550 : : static void
727 ishii@postgresql.org 3551 :CBC 56 : show_table_func_scan_info(TableFuncScanState *tscanstate, ExplainState *es)
3552 : : {
3553 : : char *maxStorageType;
3554 : : int64 maxSpaceUsed;
3555 : :
3556 : 56 : Tuplestorestate *tupstore = tscanstate->tupstore;
3557 : :
3558 [ - + - - ]: 56 : if (!es->analyze || tupstore == NULL)
3559 : 56 : return;
3560 : :
727 ishii@postgresql.org 3561 :UBC 0 : tuplestore_get_stats(tupstore, &maxStorageType, &maxSpaceUsed);
3562 : 0 : show_storage_info(maxStorageType, maxSpaceUsed, es);
3563 : : }
3564 : :
3565 : : /*
3566 : : * Show information on Recursive Union node, storage method and maximum
3567 : : * memory/disk space used.
3568 : : */
3569 : : static void
727 ishii@postgresql.org 3570 :CBC 36 : show_recursive_union_info(RecursiveUnionState *rstate, ExplainState *es)
3571 : : {
3572 : : char *maxStorageType,
3573 : : *tempStorageType;
3574 : : int64 maxSpaceUsed,
3575 : : tempSpaceUsed;
3576 : :
3577 [ + - ]: 36 : if (!es->analyze)
3578 : 36 : return;
3579 : :
3580 : : /*
3581 : : * Recursive union node uses two tuplestores. We employ the storage type
3582 : : * from one of them which consumed more memory/disk than the other. The
3583 : : * storage size is sum of the two.
3584 : : */
727 ishii@postgresql.org 3585 :UBC 0 : tuplestore_get_stats(rstate->working_table, &tempStorageType,
3586 : : &tempSpaceUsed);
3587 : 0 : tuplestore_get_stats(rstate->intermediate_table, &maxStorageType,
3588 : : &maxSpaceUsed);
3589 : :
3590 [ # # ]: 0 : if (tempSpaceUsed > maxSpaceUsed)
3591 : 0 : maxStorageType = tempStorageType;
3592 : :
3593 : 0 : maxSpaceUsed += tempSpaceUsed;
3594 : 0 : show_storage_info(maxStorageType, maxSpaceUsed, es);
3595 : : }
3596 : :
3597 : : /*
3598 : : * Show information on memoize hits/misses/evictions and memory usage.
3599 : : */
3600 : : static void
1894 drowley@postgresql.o 3601 :CBC 238 : show_memoize_info(MemoizeState *mstate, List *ancestors, ExplainState *es)
3602 : : {
3603 : 238 : Plan *plan = ((PlanState *) mstate)->plan;
418 3604 : 238 : Memoize *mplan = (Memoize *) plan;
3605 : : ListCell *lc;
3606 : : List *context;
3607 : : StringInfoData keystr;
1650 michael@paquier.xyz 3608 : 238 : char *separator = "";
3609 : : bool useprefix;
3610 : : int64 memPeakKb;
3611 : :
1997 drowley@postgresql.o 3612 : 238 : initStringInfo(&keystr);
3613 : :
3614 : : /*
3615 : : * It's hard to imagine having a memoize node with fewer than 2 RTEs, but
3616 : : * let's just keep the same useprefix logic as elsewhere in this file.
3617 : : */
740 rguo@postgresql.org 3618 [ - + - - ]: 238 : useprefix = es->rtable_size > 1 || es->verbose;
3619 : :
3620 : : /* Set up deparsing context */
1997 drowley@postgresql.o 3621 : 238 : context = set_deparse_context_plan(es->deparse_cxt,
3622 : : plan,
3623 : : ancestors);
3624 : :
418 3625 [ + - + + : 500 : foreach(lc, mplan->param_exprs)
+ + ]
3626 : : {
1997 3627 : 262 : Node *expr = (Node *) lfirst(lc);
3628 : :
1650 michael@paquier.xyz 3629 : 262 : appendStringInfoString(&keystr, separator);
3630 : :
1997 drowley@postgresql.o 3631 : 262 : appendStringInfoString(&keystr, deparse_expression(expr, context,
3632 : : useprefix, false));
1650 michael@paquier.xyz 3633 : 262 : separator = ", ";
3634 : : }
3635 : :
548 drowley@postgresql.o 3636 : 238 : ExplainPropertyText("Cache Key", keystr.data, es);
3637 [ + + ]: 238 : ExplainPropertyText("Cache Mode", mstate->binary_mode ? "binary" : "logical", es);
3638 : :
1997 3639 : 238 : pfree(keystr.data);
3640 : :
418 3641 [ + + ]: 238 : if (es->costs)
3642 : : {
3643 [ + - ]: 58 : if (es->format == EXPLAIN_FORMAT_TEXT)
3644 : : {
3645 : 58 : ExplainIndentText(es);
3646 : 58 : appendStringInfo(es->str, "Estimates: capacity=%u distinct keys=%.0f lookups=%.0f hit percent=%.2f%%\n",
3647 : : mplan->est_entries, mplan->est_unique_keys,
3648 : 58 : mplan->est_calls, mplan->est_hit_ratio * 100.0);
3649 : : }
3650 : : else
3651 : : {
418 drowley@postgresql.o 3652 :UBC 0 : ExplainPropertyUInteger("Estimated Capacity", NULL, mplan->est_entries, es);
3653 : 0 : ExplainPropertyFloat("Estimated Distinct Lookup Keys", NULL, mplan->est_unique_keys, 0, es);
3654 : 0 : ExplainPropertyFloat("Estimated Lookups", NULL, mplan->est_calls, 0, es);
3655 : 0 : ExplainPropertyFloat("Estimated Hit Percent", NULL, mplan->est_hit_ratio * 100.0, 2, es);
3656 : : }
3657 : : }
3658 : :
1997 drowley@postgresql.o 3659 [ + + ]:CBC 238 : if (!es->analyze)
3660 : 238 : return;
3661 : :
1894 3662 [ + - ]: 60 : if (mstate->stats.cache_misses > 0)
3663 : : {
3664 : : /*
3665 : : * mem_peak is only set when we freed memory, so we must use mem_used
3666 : : * when mem_peak is 0.
3667 : : */
3668 [ + + ]: 60 : if (mstate->stats.mem_peak > 0)
857 3669 : 4 : memPeakKb = BYTES_TO_KILOBYTES(mstate->stats.mem_peak);
3670 : : else
3671 : 56 : memPeakKb = BYTES_TO_KILOBYTES(mstate->mem_used);
3672 : :
1997 3673 [ - + ]: 60 : if (es->format != EXPLAIN_FORMAT_TEXT)
3674 : : {
1894 drowley@postgresql.o 3675 :UBC 0 : ExplainPropertyInteger("Cache Hits", NULL, mstate->stats.cache_hits, es);
3676 : 0 : ExplainPropertyInteger("Cache Misses", NULL, mstate->stats.cache_misses, es);
3677 : 0 : ExplainPropertyInteger("Cache Evictions", NULL, mstate->stats.cache_evictions, es);
3678 : 0 : ExplainPropertyInteger("Cache Overflows", NULL, mstate->stats.cache_overflows, es);
1997 3679 : 0 : ExplainPropertyInteger("Peak Memory Usage", "kB", memPeakKb, es);
3680 : : }
3681 : : else
3682 : : {
1997 drowley@postgresql.o 3683 :CBC 60 : ExplainIndentText(es);
3684 : 60 : appendStringInfo(es->str,
3685 : : "Hits: " UINT64_FORMAT " Misses: " UINT64_FORMAT " Evictions: " UINT64_FORMAT " Overflows: " UINT64_FORMAT " Memory Usage: " INT64_FORMAT "kB\n",
3686 : : mstate->stats.cache_hits,
3687 : : mstate->stats.cache_misses,
3688 : : mstate->stats.cache_evictions,
3689 : : mstate->stats.cache_overflows,
3690 : : memPeakKb);
3691 : : }
3692 : : }
3693 : :
1894 3694 [ + - ]: 60 : if (mstate->shared_info == NULL)
1997 3695 : 60 : return;
3696 : :
3697 : : /* Show details from parallel workers */
1894 drowley@postgresql.o 3698 [ # # ]:UBC 0 : for (int n = 0; n < mstate->shared_info->num_workers; n++)
3699 : : {
3700 : : MemoizeInstrumentation *si;
3701 : :
3702 : 0 : si = &mstate->shared_info->sinstrument[n];
3703 : :
3704 : : /*
3705 : : * Skip workers that didn't do any work. We needn't bother checking
3706 : : * for cache hits as a miss will always occur before a cache hit.
3707 : : */
1969 3708 [ # # ]: 0 : if (si->cache_misses == 0)
3709 : 0 : continue;
3710 : :
1997 3711 [ # # ]: 0 : if (es->workers_state)
3712 : 0 : ExplainOpenWorker(n, es);
3713 : :
3714 : : /*
3715 : : * Since the worker's MemoizeState.mem_used field is unavailable to
3716 : : * us, ExecEndMemoize will have set the
3717 : : * MemoizeInstrumentation.mem_peak field for us. No need to do the
3718 : : * zero checks like we did for the serial case above.
3719 : : */
857 3720 : 0 : memPeakKb = BYTES_TO_KILOBYTES(si->mem_peak);
3721 : :
1997 3722 [ # # ]: 0 : if (es->format == EXPLAIN_FORMAT_TEXT)
3723 : : {
3724 : 0 : ExplainIndentText(es);
3725 : 0 : appendStringInfo(es->str,
3726 : : "Hits: " UINT64_FORMAT " Misses: " UINT64_FORMAT " Evictions: " UINT64_FORMAT " Overflows: " UINT64_FORMAT " Memory Usage: " INT64_FORMAT "kB\n",
3727 : : si->cache_hits, si->cache_misses,
3728 : : si->cache_evictions, si->cache_overflows,
3729 : : memPeakKb);
3730 : : }
3731 : : else
3732 : : {
3733 : 0 : ExplainPropertyInteger("Cache Hits", NULL,
3734 : 0 : si->cache_hits, es);
3735 : 0 : ExplainPropertyInteger("Cache Misses", NULL,
3736 : 0 : si->cache_misses, es);
3737 : 0 : ExplainPropertyInteger("Cache Evictions", NULL,
3738 : 0 : si->cache_evictions, es);
3739 : 0 : ExplainPropertyInteger("Cache Overflows", NULL,
3740 : 0 : si->cache_overflows, es);
3741 : 0 : ExplainPropertyInteger("Peak Memory Usage", "kB", memPeakKb,
3742 : : es);
3743 : : }
3744 : :
3745 [ # # ]: 0 : if (es->workers_state)
3746 : 0 : ExplainCloseWorker(n, es);
3747 : : }
3748 : : }
3749 : :
3750 : : /*
3751 : : * Show information on hash aggregate memory usage and batches.
3752 : : */
3753 : : static void
2377 jdavis@postgresql.or 3754 :CBC 7275 : show_hashagg_info(AggState *aggstate, ExplainState *es)
3755 : : {
2320 tgl@sss.pgh.pa.us 3756 : 7275 : Agg *agg = (Agg *) aggstate->ss.ps.plan;
857 drowley@postgresql.o 3757 : 7275 : int64 memPeakKb = BYTES_TO_KILOBYTES(aggstate->hash_mem_peak);
3758 : :
2377 jdavis@postgresql.or 3759 [ + + ]: 7275 : if (agg->aggstrategy != AGG_HASHED &&
3760 [ + + ]: 5559 : agg->aggstrategy != AGG_MIXED)
3761 : 5481 : return;
3762 : :
2284 drowley@postgresql.o 3763 [ - + ]: 1794 : if (es->format != EXPLAIN_FORMAT_TEXT)
3764 : : {
2244 drowley@postgresql.o 3765 [ # # ]:UBC 0 : if (es->costs)
2284 3766 : 0 : ExplainPropertyInteger("Planned Partitions", NULL,
3767 : 0 : aggstate->hash_planned_partitions, es);
3768 : :
3769 : : /*
3770 : : * During parallel query the leader may have not helped out. We
3771 : : * detect this by checking how much memory it used. If we find it
3772 : : * didn't do any work then we don't show its properties.
3773 : : */
2235 3774 [ # # # # ]: 0 : if (es->analyze && aggstate->hash_mem_peak > 0)
3775 : : {
3776 : 0 : ExplainPropertyInteger("HashAgg Batches", NULL,
3777 : 0 : aggstate->hash_batches_used, es);
3778 : 0 : ExplainPropertyInteger("Peak Memory Usage", "kB", memPeakKb, es);
3779 : 0 : ExplainPropertyInteger("Disk Usage", "kB",
3780 : 0 : aggstate->hash_disk_used, es);
3781 : : }
3782 : : }
3783 : : else
3784 : : {
2284 drowley@postgresql.o 3785 :CBC 1794 : bool gotone = false;
3786 : :
3787 [ + + - + ]: 1794 : if (es->costs && aggstate->hash_planned_partitions > 0)
3788 : : {
2284 drowley@postgresql.o 3789 :UBC 0 : ExplainIndentText(es);
3790 : 0 : appendStringInfo(es->str, "Planned Partitions: %d",
3791 : : aggstate->hash_planned_partitions);
3792 : 0 : gotone = true;
3793 : : }
3794 : :
3795 : : /*
3796 : : * During parallel query the leader may have not helped out. We
3797 : : * detect this by checking how much memory it used. If we find it
3798 : : * didn't do any work then we don't show its properties.
3799 : : */
2235 drowley@postgresql.o 3800 [ + + + - ]:CBC 1794 : if (es->analyze && aggstate->hash_mem_peak > 0)
3801 : : {
3802 [ + - ]: 388 : if (!gotone)
3803 : 388 : ExplainIndentText(es);
3804 : : else
1339 drowley@postgresql.o 3805 :UBC 0 : appendStringInfoSpaces(es->str, 2);
3806 : :
2235 drowley@postgresql.o 3807 :CBC 388 : appendStringInfo(es->str, "Batches: %d Memory Usage: " INT64_FORMAT "kB",
3808 : : aggstate->hash_batches_used, memPeakKb);
3809 : 388 : gotone = true;
3810 : :
3811 : : /* Only display disk usage if we spilled to disk */
3812 [ - + ]: 388 : if (aggstate->hash_batches_used > 1)
3813 : : {
2235 drowley@postgresql.o 3814 :UBC 0 : appendStringInfo(es->str, " Disk Usage: " UINT64_FORMAT "kB",
3815 : : aggstate->hash_disk_used);
3816 : : }
3817 : : }
3818 : :
2235 drowley@postgresql.o 3819 [ + + ]:CBC 1794 : if (gotone)
3820 : 388 : appendStringInfoChar(es->str, '\n');
3821 : : }
3822 : :
3823 : : /* Display stats for each parallel worker */
2284 3824 [ + + - + ]: 1794 : if (es->analyze && aggstate->shared_info != NULL)
3825 : : {
2284 drowley@postgresql.o 3826 [ # # ]:UBC 0 : for (int n = 0; n < aggstate->shared_info->num_workers; n++)
3827 : : {
3828 : : AggregateInstrumentation *sinstrument;
3829 : : uint64 hash_disk_used;
3830 : : int hash_batches_used;
3831 : :
3832 : 0 : sinstrument = &aggstate->shared_info->sinstrument[n];
3833 : : /* Skip workers that didn't do anything */
2235 3834 [ # # ]: 0 : if (sinstrument->hash_mem_peak == 0)
3835 : 0 : continue;
2284 3836 : 0 : hash_disk_used = sinstrument->hash_disk_used;
3837 : 0 : hash_batches_used = sinstrument->hash_batches_used;
857 3838 : 0 : memPeakKb = BYTES_TO_KILOBYTES(sinstrument->hash_mem_peak);
3839 : :
2284 3840 [ # # ]: 0 : if (es->workers_state)
3841 : 0 : ExplainOpenWorker(n, es);
3842 : :
3843 [ # # ]: 0 : if (es->format == EXPLAIN_FORMAT_TEXT)
3844 : : {
3845 : 0 : ExplainIndentText(es);
3846 : :
2244 3847 : 0 : appendStringInfo(es->str, "Batches: %d Memory Usage: " INT64_FORMAT "kB",
3848 : : hash_batches_used, memPeakKb);
3849 : :
3850 : : /* Only display disk usage if we spilled to disk */
3851 [ # # ]: 0 : if (hash_batches_used > 1)
3852 : 0 : appendStringInfo(es->str, " Disk Usage: " UINT64_FORMAT "kB",
3853 : : hash_disk_used);
2284 3854 : 0 : appendStringInfoChar(es->str, '\n');
3855 : : }
3856 : : else
3857 : : {
2244 3858 : 0 : ExplainPropertyInteger("HashAgg Batches", NULL,
3859 : : hash_batches_used, es);
2284 3860 : 0 : ExplainPropertyInteger("Peak Memory Usage", "kB", memPeakKb,
3861 : : es);
2272 3862 : 0 : ExplainPropertyInteger("Disk Usage", "kB", hash_disk_used, es);
3863 : : }
3864 : :
2284 3865 [ # # ]: 0 : if (es->workers_state)
3866 : 0 : ExplainCloseWorker(n, es);
3867 : : }
3868 : : }
3869 : : }
3870 : :
3871 : : /*
3872 : : * Show index scan related executor instrumentation for a
3873 : : * IndexScan/IndexOnlyScan/BitmapIndexScan node
3874 : : */
3875 : : static void
5 pg@bowt.ie 3876 :GNC 7482 : show_indexscan_info(PlanState *planstate, ExplainState *es)
3877 : : {
558 pg@bowt.ie 3878 :CBC 7482 : Plan *plan = planstate->plan;
3879 : 7482 : SharedIndexScanInstrumentation *SharedInfo = NULL;
5 pg@bowt.ie 3880 :GNC 7482 : uint64 nsearches = 0,
3881 : 7482 : ntabletuplefetches = 0;
3882 : :
558 pg@bowt.ie 3883 [ + + ]:CBC 7482 : if (!es->analyze)
3884 : 6616 : return;
3885 : :
3886 : : /* Initialize counters with stats from the local process first */
3887 [ + + + - ]: 866 : switch (nodeTag(plan))
3888 : : {
3889 : 448 : case T_IndexScan:
3890 : : {
3891 : 448 : IndexScanState *indexstate = ((IndexScanState *) planstate);
3892 : :
182 3893 : 448 : nsearches = indexstate->iss_Instrument->nsearches;
558 3894 : 448 : SharedInfo = indexstate->iss_SharedInfo;
3895 : 448 : break;
3896 : : }
3897 : 80 : case T_IndexOnlyScan:
3898 : : {
3899 : 80 : IndexOnlyScanState *indexstate = ((IndexOnlyScanState *) planstate);
3900 : :
182 3901 : 80 : nsearches = indexstate->ioss_Instrument->nsearches;
5 pg@bowt.ie 3902 :GNC 80 : ntabletuplefetches = indexstate->ioss_Instrument->ntabletuplefetches;
558 pg@bowt.ie 3903 :CBC 80 : SharedInfo = indexstate->ioss_SharedInfo;
3904 : 80 : break;
3905 : : }
3906 : 338 : case T_BitmapIndexScan:
3907 : : {
3908 : 338 : BitmapIndexScanState *indexstate = ((BitmapIndexScanState *) planstate);
3909 : :
182 3910 : 338 : nsearches = indexstate->biss_Instrument->nsearches;
558 3911 : 338 : SharedInfo = indexstate->biss_SharedInfo;
3912 : 338 : break;
3913 : : }
558 pg@bowt.ie 3914 :UBC 0 : default:
3915 : 0 : break;
3916 : : }
3917 : :
3918 : : /* Next get the sum of the counters set within each and every process */
558 pg@bowt.ie 3919 [ + + ]:CBC 866 : if (SharedInfo)
3920 : : {
3921 [ + + ]: 360 : for (int i = 0; i < SharedInfo->num_workers; ++i)
3922 : : {
3923 : 180 : IndexScanInstrumentation *winstrument = &SharedInfo->winstrument[i];
3924 : :
3925 : 180 : nsearches += winstrument->nsearches;
5 pg@bowt.ie 3926 :GNC 180 : ntabletuplefetches += winstrument->ntabletuplefetches;
3927 : : }
3928 : : }
3929 : :
3930 [ + + ]: 866 : if (nodeTag(plan) == T_IndexOnlyScan)
3931 : 80 : ExplainPropertyUInteger("Heap Fetches", NULL, ntabletuplefetches, es);
3932 : :
558 pg@bowt.ie 3933 :CBC 866 : ExplainPropertyUInteger("Index Searches", NULL, nsearches, es);
3934 : : }
3935 : :
3936 : : /*
3937 : : * Show exact/lossy pages for a BitmapHeapScan node
3938 : : */
3939 : : static void
4633 rhaas@postgresql.org 3940 : 2737 : show_tidbitmap_info(BitmapHeapScanState *planstate, ExplainState *es)
3941 : : {
803 drowley@postgresql.o 3942 [ + + ]: 2737 : if (!es->analyze)
3943 : 2403 : return;
3944 : :
4633 rhaas@postgresql.org 3945 [ + + ]: 334 : if (es->format != EXPLAIN_FORMAT_TEXT)
3946 : : {
804 drowley@postgresql.o 3947 : 40 : ExplainPropertyUInteger("Exact Heap Blocks", NULL,
3948 : : planstate->stats.exact_pages, es);
3949 : 40 : ExplainPropertyUInteger("Lossy Heap Blocks", NULL,
3950 : : planstate->stats.lossy_pages, es);
3951 : : }
3952 : : else
3953 : : {
803 3954 [ + + - + ]: 294 : if (planstate->stats.exact_pages > 0 || planstate->stats.lossy_pages > 0)
3955 : : {
2430 tgl@sss.pgh.pa.us 3956 : 190 : ExplainIndentText(es);
4451 fujii@postgresql.org 3957 : 190 : appendStringInfoString(es->str, "Heap Blocks:");
803 drowley@postgresql.o 3958 [ + - ]: 190 : if (planstate->stats.exact_pages > 0)
3959 : 190 : appendStringInfo(es->str, " exact=" UINT64_FORMAT, planstate->stats.exact_pages);
3960 [ - + ]: 190 : if (planstate->stats.lossy_pages > 0)
803 drowley@postgresql.o 3961 :UBC 0 : appendStringInfo(es->str, " lossy=" UINT64_FORMAT, planstate->stats.lossy_pages);
4451 fujii@postgresql.org 3962 :CBC 190 : appendStringInfoChar(es->str, '\n');
3963 : : }
3964 : : }
3965 : :
3966 : : /* Display stats for each parallel worker */
166 tomas.vondra@postgre 3967 [ - + ]: 334 : if (planstate->sinstrument != NULL)
3968 : : {
803 drowley@postgresql.o 3969 [ # # ]:UBC 0 : for (int n = 0; n < planstate->sinstrument->num_workers; n++)
3970 : : {
3971 : 0 : BitmapHeapScanInstrumentation *si = &planstate->sinstrument->sinstrument[n];
3972 : :
3973 [ # # # # ]: 0 : if (si->exact_pages == 0 && si->lossy_pages == 0)
3974 : 0 : continue;
3975 : :
3976 [ # # ]: 0 : if (es->workers_state)
3977 : 0 : ExplainOpenWorker(n, es);
3978 : :
3979 [ # # ]: 0 : if (es->format == EXPLAIN_FORMAT_TEXT)
3980 : : {
3981 : 0 : ExplainIndentText(es);
3982 : 0 : appendStringInfoString(es->str, "Heap Blocks:");
3983 [ # # ]: 0 : if (si->exact_pages > 0)
3984 : 0 : appendStringInfo(es->str, " exact=" UINT64_FORMAT, si->exact_pages);
3985 [ # # ]: 0 : if (si->lossy_pages > 0)
3986 : 0 : appendStringInfo(es->str, " lossy=" UINT64_FORMAT, si->lossy_pages);
3987 : 0 : appendStringInfoChar(es->str, '\n');
3988 : : }
3989 : : else
3990 : : {
3991 : 0 : ExplainPropertyUInteger("Exact Heap Blocks", NULL,
3992 : : si->exact_pages, es);
3993 : 0 : ExplainPropertyUInteger("Lossy Heap Blocks", NULL,
3994 : : si->lossy_pages, es);
3995 : : }
3996 : :
3997 [ # # ]: 0 : if (es->workers_state)
3998 : 0 : ExplainCloseWorker(n, es);
3999 : : }
4000 : : }
4001 : : }
4002 : :
4003 : : /*
4004 : : * Print I/O stats - prefetching and I/O performed
4005 : : *
4006 : : * This prints two types of stats - "prefetch" about the prefetching done by
4007 : : * ReadStream, and "I/O" issued by the stream. The prefetch stats are based
4008 : : * on buffers pulled from the stream (even if no I/O is needed). The I/O
4009 : : * information is related to I/O requests issued by the stream.
4010 : : *
4011 : : * The prefetch stats are printed if any buffer was pulled from the stream.
4012 : : * For the I/O stats it depend on the output format. In non-text formats the
4013 : : * information is printed if prefetch stats were printed. In text format it
4014 : : * gets printed only if there were any I/O requests.
4015 : : */
4016 : : static void
166 tomas.vondra@postgre 4017 :CBC 8 : print_io_usage(ExplainState *es, IOStats *stats)
4018 : : {
4019 : : /* don't print prefetch stats if there's nothing to report */
4020 [ + - ]: 8 : if (stats->prefetch_count > 0)
4021 : : {
4022 [ - + ]: 8 : if (es->format == EXPLAIN_FORMAT_TEXT)
4023 : : {
4024 : : /* prefetch distance info */
166 tomas.vondra@postgre 4025 :UBC 0 : ExplainIndentText(es);
4026 : 0 : appendStringInfo(es->str, "Prefetch: avg=%.2f max=%d capacity=%d\n",
4027 : 0 : (stats->distance_sum * 1.0 / stats->prefetch_count),
4028 : 0 : stats->distance_max,
4029 : 0 : stats->distance_capacity);
4030 : :
4031 : : /* prefetch I/O info (only if there were actual I/Os) */
4032 [ # # ]: 0 : if (stats->io_count > 0)
4033 : : {
4034 : 0 : ExplainIndentText(es);
4035 : 0 : appendStringInfo(es->str, "I/O: count=%" PRIu64 " waits=%" PRIu64
4036 : : " size=%.2f in-progress=%.2f\n",
4037 : : stats->io_count, stats->wait_count,
4038 : 0 : (stats->io_nblocks * 1.0 / stats->io_count),
4039 : 0 : (stats->io_in_progress * 1.0 / stats->io_count));
4040 : : }
4041 : : }
4042 : : else
4043 : : {
166 tomas.vondra@postgre 4044 :CBC 8 : ExplainPropertyFloat("Average Prefetch Distance", NULL,
4045 : 8 : (stats->distance_sum * 1.0 / stats->prefetch_count), 3, es);
4046 : 8 : ExplainPropertyInteger("Max Prefetch Distance", NULL,
4047 : 8 : stats->distance_max, es);
4048 : 8 : ExplainPropertyInteger("Prefetch Capacity", NULL,
4049 : 8 : stats->distance_capacity, es);
4050 : :
4051 : 8 : ExplainPropertyUInteger("I/O Count", NULL,
4052 : : stats->io_count, es);
4053 : 8 : ExplainPropertyUInteger("I/O Waits", NULL,
4054 : : stats->wait_count, es);
4055 : 8 : ExplainPropertyFloat("Average I/O Size", NULL,
4056 [ - + ]: 8 : (stats->io_nblocks * 1.0 / Max(1, stats->io_count)), 3, es);
4057 : 8 : ExplainPropertyFloat("Average I/Os In Progress", NULL,
4058 [ - + ]: 8 : (stats->io_in_progress * 1.0 / Max(1, stats->io_count)), 3, es);
4059 : : }
4060 : : }
4061 : 8 : }
4062 : :
4063 : : /*
4064 : : * Show information about prefetch and I/O in a scan node.
4065 : : */
4066 : : static void
4067 : 23231 : show_scan_io_usage(ScanState *planstate, ExplainState *es)
4068 : : {
4069 : 23231 : Plan *plan = planstate->ps.plan;
4070 : 23231 : IOStats stats = {0};
4071 : :
4072 [ + + ]: 23231 : if (!es->io)
4073 : 23223 : return;
4074 : :
4075 : : /*
4076 : : * Initialize counters with stats from the local process first.
4077 : : *
4078 : : * The scan descriptor may not exist, e.g. if the scan did not start, or
4079 : : * because of debug_parallel_query=regress. We still want to collect data
4080 : : * from workers.
4081 : : */
4082 [ + - ]: 8 : if (planstate->ss_currentScanDesc &&
4083 [ + - ]: 8 : planstate->ss_currentScanDesc->rs_instrument)
4084 : : {
4085 : 8 : stats = planstate->ss_currentScanDesc->rs_instrument->io;
4086 : : }
4087 : :
4088 : : /*
4089 : : * Accumulate data from parallel workers (if any).
4090 : : */
4091 [ - + - - ]: 8 : switch (nodeTag(plan))
4092 : : {
166 tomas.vondra@postgre 4093 :UBC 0 : case T_BitmapHeapScan:
4094 : : {
4095 : 0 : SharedBitmapHeapInstrumentation *sinstrument
4096 : : = ((BitmapHeapScanState *) planstate)->sinstrument;
4097 : :
4098 [ # # ]: 0 : if (sinstrument)
4099 : : {
4100 [ # # ]: 0 : for (int i = 0; i < sinstrument->num_workers; ++i)
4101 : : {
4102 : 0 : BitmapHeapScanInstrumentation *winstrument = &sinstrument->sinstrument[i];
4103 : :
4104 : 0 : AccumulateIOStats(&stats, &winstrument->stats.io);
4105 : :
4106 [ # # ]: 0 : if (!es->workers_state)
4107 : 0 : continue;
4108 : :
4109 : 0 : ExplainOpenWorker(i, es);
4110 : 0 : print_io_usage(es, &winstrument->stats.io);
4111 : 0 : ExplainCloseWorker(i, es);
4112 : : }
4113 : : }
4114 : :
4115 : 0 : break;
4116 : : }
166 tomas.vondra@postgre 4117 :CBC 8 : case T_SeqScan:
4118 : : {
4119 : 8 : SharedSeqScanInstrumentation *sinstrument
4120 : : = ((SeqScanState *) planstate)->sinstrument;
4121 : :
4122 [ - + ]: 8 : if (sinstrument)
4123 : : {
166 tomas.vondra@postgre 4124 [ # # ]:UBC 0 : for (int i = 0; i < sinstrument->num_workers; ++i)
4125 : : {
4126 : 0 : SeqScanInstrumentation *winstrument = &sinstrument->sinstrument[i];
4127 : :
4128 : 0 : AccumulateIOStats(&stats, &winstrument->stats.io);
4129 : :
4130 [ # # ]: 0 : if (!es->workers_state)
4131 : 0 : continue;
4132 : :
4133 : 0 : ExplainOpenWorker(i, es);
4134 : 0 : print_io_usage(es, &winstrument->stats.io);
4135 : 0 : ExplainCloseWorker(i, es);
4136 : : }
4137 : : }
4138 : :
166 tomas.vondra@postgre 4139 :CBC 8 : break;
4140 : : }
166 tomas.vondra@postgre 4141 :UBC 0 : case T_TidRangeScan:
4142 : : {
4143 : 0 : SharedTidRangeScanInstrumentation *sinstrument
4144 : : = ((TidRangeScanState *) planstate)->trss_sinstrument;
4145 : :
4146 [ # # ]: 0 : if (sinstrument)
4147 : : {
4148 [ # # ]: 0 : for (int i = 0; i < sinstrument->num_workers; ++i)
4149 : : {
4150 : 0 : TidRangeScanInstrumentation *winstrument = &sinstrument->sinstrument[i];
4151 : :
4152 : 0 : AccumulateIOStats(&stats, &winstrument->stats.io);
4153 : :
4154 [ # # ]: 0 : if (!es->workers_state)
4155 : 0 : continue;
4156 : :
4157 : 0 : ExplainOpenWorker(i, es);
4158 : 0 : print_io_usage(es, &winstrument->stats.io);
4159 : 0 : ExplainCloseWorker(i, es);
4160 : : }
4161 : : }
4162 : :
4163 : 0 : break;
4164 : : }
4165 : 0 : default:
4166 : : /* ignore other plans */
4167 : 0 : return;
4168 : : }
4169 : :
166 tomas.vondra@postgre 4170 :CBC 8 : print_io_usage(es, &stats);
4171 : : }
4172 : :
4173 : : /*
4174 : : * If it's EXPLAIN ANALYZE, show instrumentation information for a plan node
4175 : : *
4176 : : * "which" identifies which instrumentation counter to print
4177 : : */
4178 : : static void
5477 tgl@sss.pgh.pa.us 4179 : 18397 : show_instrumentation_count(const char *qlabel, int which,
4180 : : PlanState *planstate, ExplainState *es)
4181 : : {
4182 : : double nfiltered;
4183 : : double nloops;
4184 : :
4185 [ + + - + ]: 18397 : if (!es->analyze || !planstate->instrument)
4186 : 15939 : return;
4187 : :
4188 [ + + ]: 2458 : if (which == 2)
4189 : 776 : nfiltered = planstate->instrument->nfiltered2;
4190 : : else
4191 : 1682 : nfiltered = planstate->instrument->nfiltered1;
4192 : 2458 : nloops = planstate->instrument->nloops;
4193 : :
4194 : : /* In text mode, suppress zero counts; they're not interesting enough */
4195 [ + + + + ]: 2458 : if (nfiltered > 0 || es->format != EXPLAIN_FORMAT_TEXT)
4196 : : {
4197 [ + - ]: 1168 : if (nloops > 0)
3110 andres@anarazel.de 4198 : 1168 : ExplainPropertyFloat(qlabel, NULL, nfiltered / nloops, 0, es);
4199 : : else
3110 andres@anarazel.de 4200 :UBC 0 : ExplainPropertyFloat(qlabel, NULL, 0.0, 0, es);
4201 : : }
4202 : : }
4203 : :
4204 : : /*
4205 : : * Show extra information for a ForeignScan node.
4206 : : */
4207 : : static void
5691 tgl@sss.pgh.pa.us 4208 :CBC 471 : show_foreignscan_info(ForeignScanState *fsstate, ExplainState *es)
4209 : : {
4210 : 471 : FdwRoutine *fdwroutine = fsstate->fdwroutine;
4211 : :
4212 : : /* Let the FDW emit whatever fields it wants */
3838 rhaas@postgresql.org 4213 [ + + ]: 471 : if (((ForeignScan *) fsstate->ss.ps.plan)->operation != CMD_SELECT)
4214 : : {
4215 [ + - ]: 33 : if (fdwroutine->ExplainDirectModify != NULL)
4216 : 33 : fdwroutine->ExplainDirectModify(fsstate, es);
4217 : : }
4218 : : else
4219 : : {
4220 [ + - ]: 438 : if (fdwroutine->ExplainForeignScan != NULL)
4221 : 438 : fdwroutine->ExplainForeignScan(fsstate, es);
4222 : : }
5691 tgl@sss.pgh.pa.us 4223 : 471 : }
4224 : :
4225 : : /*
4226 : : * Fetch the name of an index in an EXPLAIN
4227 : : *
4228 : : * We allow plugins to get control here so that plans involving hypothetical
4229 : : * indexes can be explained.
4230 : : *
4231 : : * Note: names returned by this function should be "raw"; the caller will
4232 : : * apply quoting if needed. Formerly the convention was to do quoting here,
4233 : : * but we don't want that in non-text output formats.
4234 : : */
4235 : : static const char *
7058 4236 : 7482 : explain_get_index_name(Oid indexId)
4237 : : {
4238 : : const char *result;
4239 : :
4240 [ - + ]: 7482 : if (explain_get_index_name_hook)
7058 tgl@sss.pgh.pa.us 4241 :UBC 0 : result = (*explain_get_index_name_hook) (indexId);
4242 : : else
7058 tgl@sss.pgh.pa.us 4243 :CBC 7482 : result = NULL;
4244 [ + - ]: 7482 : if (result == NULL)
4245 : : {
4246 : : /* default behavior: look it up in the catalogs */
4247 : 7482 : result = get_rel_name(indexId);
4248 [ - + ]: 7482 : if (result == NULL)
7058 tgl@sss.pgh.pa.us 4249 [ # # ]:UBC 0 : elog(ERROR, "cache lookup failed for index %u", indexId);
4250 : : }
7058 tgl@sss.pgh.pa.us 4251 :CBC 7482 : return result;
4252 : : }
4253 : :
4254 : : /*
4255 : : * Return whether show_buffer_usage would have anything to print, if given
4256 : : * the same 'usage' data. Note that when the format is anything other than
4257 : : * text, we print even if the counters are all zeroes.
4258 : : */
4259 : : static bool
965 alvherre@alvh.no-ip. 4260 : 16989 : peek_buffer_usage(ExplainState *es, const BufferUsage *usage)
4261 : : {
4262 : : bool has_shared;
4263 : : bool has_local;
4264 : : bool has_temp;
4265 : : bool has_shared_timing;
4266 : : bool has_local_timing;
4267 : : bool has_temp_timing;
4268 : :
4269 [ + + ]: 16989 : if (usage == NULL)
4270 : 15233 : return false;
4271 : :
4272 [ + + ]: 1756 : if (es->format != EXPLAIN_FORMAT_TEXT)
4273 : 156 : return true;
4274 : :
4275 : 4423 : has_shared = (usage->shared_blks_hit > 0 ||
4276 [ + + ]: 1223 : usage->shared_blks_read > 0 ||
4277 [ + + + - ]: 4039 : usage->shared_blks_dirtied > 0 ||
4278 [ - + ]: 1216 : usage->shared_blks_written > 0);
4279 : 4800 : has_local = (usage->local_blks_hit > 0 ||
4280 [ + - ]: 1600 : usage->local_blks_read > 0 ||
4281 [ + - + - ]: 4800 : usage->local_blks_dirtied > 0 ||
4282 [ - + ]: 1600 : usage->local_blks_written > 0);
4283 [ + - ]: 3200 : has_temp = (usage->temp_blks_read > 0 ||
4284 [ - + ]: 1600 : usage->temp_blks_written > 0);
4285 [ + - ]: 3200 : has_shared_timing = (!INSTR_TIME_IS_ZERO(usage->shared_blk_read_time) ||
4286 [ - + ]: 1600 : !INSTR_TIME_IS_ZERO(usage->shared_blk_write_time));
4287 [ + - ]: 3200 : has_local_timing = (!INSTR_TIME_IS_ZERO(usage->local_blk_read_time) ||
4288 [ - + ]: 1600 : !INSTR_TIME_IS_ZERO(usage->local_blk_write_time));
4289 [ + - ]: 3200 : has_temp_timing = (!INSTR_TIME_IS_ZERO(usage->temp_blk_read_time) ||
4290 [ - + ]: 1600 : !INSTR_TIME_IS_ZERO(usage->temp_blk_write_time));
4291 : :
4292 [ + - + - : 1216 : return has_shared || has_local || has_temp || has_shared_timing ||
+ - + - ]
4293 [ + + - + ]: 2816 : has_local_timing || has_temp_timing;
4294 : : }
4295 : :
4296 : : /*
4297 : : * Show buffer usage details. This better be sync with peek_buffer_usage.
4298 : : */
4299 : : static void
4300 : 3408 : show_buffer_usage(ExplainState *es, const BufferUsage *usage)
4301 : : {
3938 rhaas@postgresql.org 4302 [ + + ]: 3408 : if (es->format == EXPLAIN_FORMAT_TEXT)
4303 : : {
4304 : 5270 : bool has_shared = (usage->shared_blks_hit > 0 ||
4305 [ + + ]: 62 : usage->shared_blks_read > 0 ||
4306 [ + + + - ]: 2690 : usage->shared_blks_dirtied > 0 ||
4307 [ - + ]: 24 : usage->shared_blks_written > 0);
4308 : 7812 : bool has_local = (usage->local_blks_hit > 0 ||
4309 [ + - ]: 2604 : usage->local_blks_read > 0 ||
4310 [ + - + - ]: 7812 : usage->local_blks_dirtied > 0 ||
4311 [ - + ]: 2604 : usage->local_blks_written > 0);
4312 [ + - ]: 5208 : bool has_temp = (usage->temp_blks_read > 0 ||
4313 [ - + ]: 2604 : usage->temp_blks_written > 0);
1067 michael@paquier.xyz 4314 [ + - ]: 5208 : bool has_shared_timing = (!INSTR_TIME_IS_ZERO(usage->shared_blk_read_time) ||
4315 [ - + ]: 2604 : !INSTR_TIME_IS_ZERO(usage->shared_blk_write_time));
4316 [ + - ]: 5208 : bool has_local_timing = (!INSTR_TIME_IS_ZERO(usage->local_blk_read_time) ||
4317 [ - + ]: 2604 : !INSTR_TIME_IS_ZERO(usage->local_blk_write_time));
1626 4318 [ + - ]: 5208 : bool has_temp_timing = (!INSTR_TIME_IS_ZERO(usage->temp_blk_read_time) ||
4319 [ - + ]: 2604 : !INSTR_TIME_IS_ZERO(usage->temp_blk_write_time));
4320 : :
4321 : : /* Show only positive counter values. */
3938 rhaas@postgresql.org 4322 [ + + + - : 2604 : if (has_shared || has_local || has_temp)
- + ]
4323 : : {
2430 tgl@sss.pgh.pa.us 4324 : 2580 : ExplainIndentText(es);
3938 rhaas@postgresql.org 4325 : 2580 : appendStringInfoString(es->str, "Buffers:");
4326 : :
4327 [ + - ]: 2580 : if (has_shared)
4328 : : {
4329 : 2580 : appendStringInfoString(es->str, " shared");
4330 [ + + ]: 2580 : if (usage->shared_blks_hit > 0)
540 peter@eisentraut.org 4331 : 2542 : appendStringInfo(es->str, " hit=%" PRId64,
4332 : 2542 : usage->shared_blks_hit);
3938 rhaas@postgresql.org 4333 [ + + ]: 2580 : if (usage->shared_blks_read > 0)
540 peter@eisentraut.org 4334 : 94 : appendStringInfo(es->str, " read=%" PRId64,
4335 : 94 : usage->shared_blks_read);
3938 rhaas@postgresql.org 4336 [ + + ]: 2580 : if (usage->shared_blks_dirtied > 0)
540 peter@eisentraut.org 4337 : 117 : appendStringInfo(es->str, " dirtied=%" PRId64,
4338 : 117 : usage->shared_blks_dirtied);
3938 rhaas@postgresql.org 4339 [ + + ]: 2580 : if (usage->shared_blks_written > 0)
540 peter@eisentraut.org 4340 : 142 : appendStringInfo(es->str, " written=%" PRId64,
4341 : 142 : usage->shared_blks_written);
3938 rhaas@postgresql.org 4342 [ + - - + ]: 2580 : if (has_local || has_temp)
3938 rhaas@postgresql.org 4343 :UBC 0 : appendStringInfoChar(es->str, ',');
4344 : : }
3938 rhaas@postgresql.org 4345 [ - + ]:CBC 2580 : if (has_local)
4346 : : {
3938 rhaas@postgresql.org 4347 :UBC 0 : appendStringInfoString(es->str, " local");
4348 [ # # ]: 0 : if (usage->local_blks_hit > 0)
540 peter@eisentraut.org 4349 : 0 : appendStringInfo(es->str, " hit=%" PRId64,
4350 : 0 : usage->local_blks_hit);
3938 rhaas@postgresql.org 4351 [ # # ]: 0 : if (usage->local_blks_read > 0)
540 peter@eisentraut.org 4352 : 0 : appendStringInfo(es->str, " read=%" PRId64,
4353 : 0 : usage->local_blks_read);
3938 rhaas@postgresql.org 4354 [ # # ]: 0 : if (usage->local_blks_dirtied > 0)
540 peter@eisentraut.org 4355 : 0 : appendStringInfo(es->str, " dirtied=%" PRId64,
4356 : 0 : usage->local_blks_dirtied);
3938 rhaas@postgresql.org 4357 [ # # ]: 0 : if (usage->local_blks_written > 0)
540 peter@eisentraut.org 4358 : 0 : appendStringInfo(es->str, " written=%" PRId64,
4359 : 0 : usage->local_blks_written);
3938 rhaas@postgresql.org 4360 [ # # ]: 0 : if (has_temp)
4361 : 0 : appendStringInfoChar(es->str, ',');
4362 : : }
3938 rhaas@postgresql.org 4363 [ - + ]:CBC 2580 : if (has_temp)
4364 : : {
3938 rhaas@postgresql.org 4365 :UBC 0 : appendStringInfoString(es->str, " temp");
4366 [ # # ]: 0 : if (usage->temp_blks_read > 0)
540 peter@eisentraut.org 4367 : 0 : appendStringInfo(es->str, " read=%" PRId64,
4368 : 0 : usage->temp_blks_read);
3938 rhaas@postgresql.org 4369 [ # # ]: 0 : if (usage->temp_blks_written > 0)
540 peter@eisentraut.org 4370 : 0 : appendStringInfo(es->str, " written=%" PRId64,
4371 : 0 : usage->temp_blks_written);
4372 : : }
3938 rhaas@postgresql.org 4373 :CBC 2580 : appendStringInfoChar(es->str, '\n');
4374 : : }
4375 : :
4376 : : /* As above, show only positive counter values. */
1067 michael@paquier.xyz 4377 [ + - + - : 2604 : if (has_shared_timing || has_local_timing || has_temp_timing)
- + ]
4378 : : {
2430 tgl@sss.pgh.pa.us 4379 :UBC 0 : ExplainIndentText(es);
3938 rhaas@postgresql.org 4380 : 0 : appendStringInfoString(es->str, "I/O Timings:");
4381 : :
1067 michael@paquier.xyz 4382 [ # # ]: 0 : if (has_shared_timing)
4383 : : {
4384 : 0 : appendStringInfoString(es->str, " shared");
4385 [ # # ]: 0 : if (!INSTR_TIME_IS_ZERO(usage->shared_blk_read_time))
1626 4386 : 0 : appendStringInfo(es->str, " read=%0.3f",
1067 4387 : 0 : INSTR_TIME_GET_MILLISEC(usage->shared_blk_read_time));
4388 [ # # ]: 0 : if (!INSTR_TIME_IS_ZERO(usage->shared_blk_write_time))
1626 4389 : 0 : appendStringInfo(es->str, " write=%0.3f",
1067 4390 : 0 : INSTR_TIME_GET_MILLISEC(usage->shared_blk_write_time));
4391 [ # # # # ]: 0 : if (has_local_timing || has_temp_timing)
4392 : 0 : appendStringInfoChar(es->str, ',');
4393 : : }
4394 [ # # ]: 0 : if (has_local_timing)
4395 : : {
4396 : 0 : appendStringInfoString(es->str, " local");
4397 [ # # ]: 0 : if (!INSTR_TIME_IS_ZERO(usage->local_blk_read_time))
4398 : 0 : appendStringInfo(es->str, " read=%0.3f",
4399 : 0 : INSTR_TIME_GET_MILLISEC(usage->local_blk_read_time));
4400 [ # # ]: 0 : if (!INSTR_TIME_IS_ZERO(usage->local_blk_write_time))
4401 : 0 : appendStringInfo(es->str, " write=%0.3f",
4402 : 0 : INSTR_TIME_GET_MILLISEC(usage->local_blk_write_time));
1626 4403 [ # # ]: 0 : if (has_temp_timing)
4404 : 0 : appendStringInfoChar(es->str, ',');
4405 : : }
4406 [ # # ]: 0 : if (has_temp_timing)
4407 : : {
4408 : 0 : appendStringInfoString(es->str, " temp");
4409 [ # # ]: 0 : if (!INSTR_TIME_IS_ZERO(usage->temp_blk_read_time))
4410 : 0 : appendStringInfo(es->str, " read=%0.3f",
4411 : 0 : INSTR_TIME_GET_MILLISEC(usage->temp_blk_read_time));
4412 [ # # ]: 0 : if (!INSTR_TIME_IS_ZERO(usage->temp_blk_write_time))
4413 : 0 : appendStringInfo(es->str, " write=%0.3f",
4414 : 0 : INSTR_TIME_GET_MILLISEC(usage->temp_blk_write_time));
4415 : : }
3938 rhaas@postgresql.org 4416 : 0 : appendStringInfoChar(es->str, '\n');
4417 : : }
4418 : : }
4419 : : else
4420 : : {
3110 andres@anarazel.de 4421 :CBC 804 : ExplainPropertyInteger("Shared Hit Blocks", NULL,
4422 : 804 : usage->shared_blks_hit, es);
4423 : 804 : ExplainPropertyInteger("Shared Read Blocks", NULL,
4424 : 804 : usage->shared_blks_read, es);
4425 : 804 : ExplainPropertyInteger("Shared Dirtied Blocks", NULL,
4426 : 804 : usage->shared_blks_dirtied, es);
4427 : 804 : ExplainPropertyInteger("Shared Written Blocks", NULL,
4428 : 804 : usage->shared_blks_written, es);
4429 : 804 : ExplainPropertyInteger("Local Hit Blocks", NULL,
4430 : 804 : usage->local_blks_hit, es);
4431 : 804 : ExplainPropertyInteger("Local Read Blocks", NULL,
4432 : 804 : usage->local_blks_read, es);
4433 : 804 : ExplainPropertyInteger("Local Dirtied Blocks", NULL,
4434 : 804 : usage->local_blks_dirtied, es);
4435 : 804 : ExplainPropertyInteger("Local Written Blocks", NULL,
4436 : 804 : usage->local_blks_written, es);
4437 : 804 : ExplainPropertyInteger("Temp Read Blocks", NULL,
4438 : 804 : usage->temp_blks_read, es);
4439 : 804 : ExplainPropertyInteger("Temp Written Blocks", NULL,
4440 : 804 : usage->temp_blks_written, es);
3691 tgl@sss.pgh.pa.us 4441 [ + + ]: 804 : if (track_io_timing)
4442 : : {
1067 michael@paquier.xyz 4443 : 8 : ExplainPropertyFloat("Shared I/O Read Time", "ms",
4444 : 8 : INSTR_TIME_GET_MILLISEC(usage->shared_blk_read_time),
4445 : : 3, es);
4446 : 8 : ExplainPropertyFloat("Shared I/O Write Time", "ms",
4447 : 8 : INSTR_TIME_GET_MILLISEC(usage->shared_blk_write_time),
4448 : : 3, es);
4449 : 8 : ExplainPropertyFloat("Local I/O Read Time", "ms",
4450 : 8 : INSTR_TIME_GET_MILLISEC(usage->local_blk_read_time),
4451 : : 3, es);
4452 : 8 : ExplainPropertyFloat("Local I/O Write Time", "ms",
4453 : 8 : INSTR_TIME_GET_MILLISEC(usage->local_blk_write_time),
4454 : : 3, es);
1626 4455 : 8 : ExplainPropertyFloat("Temp I/O Read Time", "ms",
4456 : 8 : INSTR_TIME_GET_MILLISEC(usage->temp_blk_read_time),
4457 : : 3, es);
4458 : 8 : ExplainPropertyFloat("Temp I/O Write Time", "ms",
4459 : 8 : INSTR_TIME_GET_MILLISEC(usage->temp_blk_write_time),
4460 : : 3, es);
4461 : : }
4462 : : }
3938 rhaas@postgresql.org 4463 : 3408 : }
4464 : :
4465 : : /*
4466 : : * Show WAL usage details.
4467 : : */
4468 : : static void
2358 akapila@postgresql.o 4469 :UBC 0 : show_wal_usage(ExplainState *es, const WalUsage *usage)
4470 : : {
4471 [ # # ]: 0 : if (es->format == EXPLAIN_FORMAT_TEXT)
4472 : : {
4473 : : /* Show only positive counter values. */
2329 4474 [ # # # # ]: 0 : if ((usage->wal_records > 0) || (usage->wal_fpi > 0) ||
325 michael@paquier.xyz 4475 [ # # # # ]: 0 : (usage->wal_bytes > 0) || (usage->wal_buffers_full > 0) ||
4476 [ # # ]: 0 : (usage->wal_fpi_bytes > 0))
4477 : : {
2358 akapila@postgresql.o 4478 : 0 : ExplainIndentText(es);
4479 : 0 : appendStringInfoString(es->str, "WAL:");
4480 : :
4481 [ # # ]: 0 : if (usage->wal_records > 0)
540 peter@eisentraut.org 4482 : 0 : appendStringInfo(es->str, " records=%" PRId64,
4483 : 0 : usage->wal_records);
2329 akapila@postgresql.o 4484 [ # # ]: 0 : if (usage->wal_fpi > 0)
540 peter@eisentraut.org 4485 : 0 : appendStringInfo(es->str, " fpi=%" PRId64,
4486 : 0 : usage->wal_fpi);
2358 akapila@postgresql.o 4487 [ # # ]: 0 : if (usage->wal_bytes > 0)
540 peter@eisentraut.org 4488 : 0 : appendStringInfo(es->str, " bytes=%" PRIu64,
2358 akapila@postgresql.o 4489 : 0 : usage->wal_bytes);
325 michael@paquier.xyz 4490 [ # # ]: 0 : if (usage->wal_fpi_bytes > 0)
4491 : 0 : appendStringInfo(es->str, " fpi bytes=%" PRIu64,
4492 : 0 : usage->wal_fpi_bytes);
580 4493 [ # # ]: 0 : if (usage->wal_buffers_full > 0)
540 peter@eisentraut.org 4494 : 0 : appendStringInfo(es->str, " buffers full=%" PRId64,
4495 : 0 : usage->wal_buffers_full);
2358 akapila@postgresql.o 4496 : 0 : appendStringInfoChar(es->str, '\n');
4497 : : }
4498 : : }
4499 : : else
4500 : : {
2329 4501 : 0 : ExplainPropertyInteger("WAL Records", NULL,
2358 4502 : 0 : usage->wal_records, es);
2329 4503 : 0 : ExplainPropertyInteger("WAL FPI", NULL,
4504 : 0 : usage->wal_fpi, es);
4505 : 0 : ExplainPropertyUInteger("WAL Bytes", NULL,
2358 4506 : 0 : usage->wal_bytes, es);
325 michael@paquier.xyz 4507 : 0 : ExplainPropertyUInteger("WAL FPI Bytes", NULL,
4508 : 0 : usage->wal_fpi_bytes, es);
580 4509 : 0 : ExplainPropertyInteger("WAL Buffers Full", NULL,
4510 : 0 : usage->wal_buffers_full, es);
4511 : : }
2358 akapila@postgresql.o 4512 : 0 : }
4513 : :
4514 : : /*
4515 : : * Show memory usage details.
4516 : : */
4517 : : static void
965 alvherre@alvh.no-ip. 4518 :CBC 20 : show_memory_counters(ExplainState *es, const MemoryContextCounters *mem_counters)
4519 : : {
857 drowley@postgresql.o 4520 : 20 : int64 memUsedkB = BYTES_TO_KILOBYTES(mem_counters->totalspace -
4521 : : mem_counters->freespace);
4522 : 20 : int64 memAllocatedkB = BYTES_TO_KILOBYTES(mem_counters->totalspace);
4523 : :
965 alvherre@alvh.no-ip. 4524 [ + + ]: 20 : if (es->format == EXPLAIN_FORMAT_TEXT)
4525 : : {
4526 : 12 : ExplainIndentText(es);
4527 : 12 : appendStringInfo(es->str,
4528 : : "Memory: used=" INT64_FORMAT "kB allocated=" INT64_FORMAT "kB",
4529 : : memUsedkB, memAllocatedkB);
4530 : 12 : appendStringInfoChar(es->str, '\n');
4531 : : }
4532 : : else
4533 : : {
857 drowley@postgresql.o 4534 : 8 : ExplainPropertyInteger("Memory Used", "kB", memUsedkB, es);
4535 : 8 : ExplainPropertyInteger("Memory Allocated", "kB", memAllocatedkB, es);
4536 : : }
965 alvherre@alvh.no-ip. 4537 : 20 : }
4538 : :
4539 : :
4540 : : /*
4541 : : * Add some additional details about an IndexScan or IndexOnlyScan
4542 : : */
4543 : : static void
5458 tgl@sss.pgh.pa.us 4544 : 4616 : ExplainIndexScanDetails(Oid indexid, ScanDirection indexorderdir,
4545 : : ExplainState *es)
4546 : : {
4547 : 4616 : const char *indexname = explain_get_index_name(indexid);
4548 : :
4549 [ + + ]: 4616 : if (es->format == EXPLAIN_FORMAT_TEXT)
4550 : : {
4551 [ + + ]: 4595 : if (ScanDirectionIsBackward(indexorderdir))
4552 : 182 : appendStringInfoString(es->str, " Backward");
2281 4553 : 4595 : appendStringInfo(es->str, " using %s", quote_identifier(indexname));
4554 : : }
4555 : : else
4556 : : {
4557 : : const char *scandir;
4558 : :
5458 4559 [ - + - ]: 21 : switch (indexorderdir)
4560 : : {
5458 tgl@sss.pgh.pa.us 4561 :UBC 0 : case BackwardScanDirection:
4562 : 0 : scandir = "Backward";
4563 : 0 : break;
5458 tgl@sss.pgh.pa.us 4564 :CBC 21 : case ForwardScanDirection:
4565 : 21 : scandir = "Forward";
4566 : 21 : break;
5458 tgl@sss.pgh.pa.us 4567 :UBC 0 : default:
4568 : 0 : scandir = "???";
4569 : 0 : break;
4570 : : }
5458 tgl@sss.pgh.pa.us 4571 :CBC 21 : ExplainPropertyText("Scan Direction", scandir, es);
4572 : 21 : ExplainPropertyText("Index Name", indexname, es);
4573 : : }
4574 : 4616 : }
4575 : :
4576 : : /*
4577 : : * Show the target of a Scan node
4578 : : */
4579 : : static void
6267 4580 : 28703 : ExplainScanTarget(Scan *plan, ExplainState *es)
4581 : : {
5682 4582 : 28703 : ExplainTargetRel((Plan *) plan, plan->scanrelid, es);
4583 : 28703 : }
4584 : :
4585 : : /*
4586 : : * Show the target of a ModifyTable node
4587 : : *
4588 : : * Here we show the nominal target (ie, the relation that was named in the
4589 : : * original query). If the actual target(s) is/are different, we'll show them
4590 : : * in show_modifytable_info().
4591 : : */
4592 : : static void
4593 : 716 : ExplainModifyTarget(ModifyTable *plan, ExplainState *es)
4594 : : {
4233 4595 : 716 : ExplainTargetRel((Plan *) plan, plan->nominalRelation, es);
5682 4596 : 716 : }
4597 : :
4598 : : /*
4599 : : * Show the target relation of a scan or modify node
4600 : : */
4601 : : static void
4602 : 29770 : ExplainTargetRel(Plan *plan, Index rti, ExplainState *es)
4603 : : {
6267 4604 : 29770 : char *objectname = NULL;
6250 4605 : 29770 : char *namespace = NULL;
4606 : 29770 : const char *objecttag = NULL;
4607 : : RangeTblEntry *rte;
4608 : : char *refname;
4609 : :
5682 4610 : 29770 : rte = rt_fetch(rti, es->rtable);
5112 4611 : 29770 : refname = (char *) list_nth(es->rtable_names, rti - 1);
5011 4612 [ - + ]: 29770 : if (refname == NULL)
5011 tgl@sss.pgh.pa.us 4613 :UBC 0 : refname = rte->eref->aliasname;
4614 : :
6267 tgl@sss.pgh.pa.us 4615 [ + + + + :CBC 29770 : switch (nodeTag(plan))
+ - + + ]
4616 : : {
4617 : 28231 : case T_SeqScan:
4618 : : case T_SampleScan:
4619 : : case T_IndexScan:
4620 : : case T_IndexOnlyScan:
4621 : : case T_BitmapHeapScan:
4622 : : case T_TidScan:
4623 : : case T_TidRangeScan:
4624 : : case T_ForeignScan:
4625 : : case T_CustomScan:
4626 : : case T_ModifyTable:
4627 : : /* Assert it's on a real relation */
4628 [ - + ]: 28231 : Assert(rte->rtekind == RTE_RELATION);
4629 : 28231 : objectname = get_rel_name(rte->relid);
6250 4630 [ + + ]: 28231 : if (es->verbose)
1881 4631 : 3041 : namespace = get_namespace_name_or_temp(get_rel_namespace(rte->relid));
6250 4632 : 28231 : objecttag = "Relation Name";
6267 4633 : 28231 : break;
4634 : 436 : case T_FunctionScan:
4635 : : {
4686 4636 : 436 : FunctionScan *fscan = (FunctionScan *) plan;
4637 : :
4638 : : /* Assert it's on a RangeFunction */
6267 4639 [ - + ]: 436 : Assert(rte->rtekind == RTE_FUNCTION);
4640 : :
4641 : : /*
4642 : : * If the expression is still a function call of a single
4643 : : * function, we can get the real name of the function.
4644 : : * Otherwise, punt. (Even if it was a single function call
4645 : : * originally, the optimizer could have simplified it away.)
4646 : : */
4686 4647 [ + + ]: 436 : if (list_length(fscan->functions) == 1)
4648 : : {
4649 : 435 : RangeTblFunction *rtfunc = (RangeTblFunction *) linitial(fscan->functions);
4650 : :
4651 [ + + ]: 435 : if (IsA(rtfunc->funcexpr, FuncExpr))
4652 : : {
4653 : 419 : FuncExpr *funcexpr = (FuncExpr *) rtfunc->funcexpr;
4654 : 419 : Oid funcid = funcexpr->funcid;
4655 : :
4656 : 419 : objectname = get_func_name(funcid);
4657 [ + + ]: 419 : if (es->verbose)
1881 4658 : 137 : namespace = get_namespace_name_or_temp(get_func_namespace(funcid));
4659 : : }
4660 : : }
6250 4661 : 436 : objecttag = "Function Name";
4662 : : }
6267 4663 : 436 : break;
3483 alvherre@alvh.no-ip. 4664 : 56 : case T_TableFuncScan:
4665 : : {
899 amitlan@postgresql.o 4666 : 56 : TableFunc *tablefunc = ((TableFuncScan *) plan)->tablefunc;
4667 : :
4668 [ - + ]: 56 : Assert(rte->rtekind == RTE_TABLEFUNC);
4669 [ + + - ]: 56 : switch (tablefunc->functype)
4670 : : {
4671 : 24 : case TFT_XMLTABLE:
4672 : 24 : objectname = "xmltable";
4673 : 24 : break;
4674 : 32 : case TFT_JSON_TABLE:
4675 : 32 : objectname = "json_table";
4676 : 32 : break;
899 amitlan@postgresql.o 4677 :UBC 0 : default:
4678 [ # # ]: 0 : elog(ERROR, "invalid TableFunc type %d",
4679 : : (int) tablefunc->functype);
4680 : : }
899 amitlan@postgresql.o 4681 :CBC 56 : objecttag = "Table Function Name";
4682 : : }
3483 alvherre@alvh.no-ip. 4683 : 56 : break;
6267 tgl@sss.pgh.pa.us 4684 : 412 : case T_ValuesScan:
4685 [ - + ]: 412 : Assert(rte->rtekind == RTE_VALUES);
4686 : 412 : break;
4687 : 183 : case T_CteScan:
4688 : : /* Assert it's on a non-self-reference CTE */
4689 [ - + ]: 183 : Assert(rte->rtekind == RTE_CTE);
4690 [ - + ]: 183 : Assert(!rte->self_reference);
4691 : 183 : objectname = rte->ctename;
6250 4692 : 183 : objecttag = "CTE Name";
6267 4693 : 183 : break;
3460 kgrittn@postgresql.o 4694 :UBC 0 : case T_NamedTuplestoreScan:
4695 [ # # ]: 0 : Assert(rte->rtekind == RTE_NAMEDTUPLESTORE);
4696 : 0 : objectname = rte->enrname;
4697 : 0 : objecttag = "Tuplestore Name";
4698 : 0 : break;
6267 tgl@sss.pgh.pa.us 4699 :CBC 36 : case T_WorkTableScan:
4700 : : /* Assert it's on a self-reference CTE */
4701 [ - + ]: 36 : Assert(rte->rtekind == RTE_CTE);
4702 [ - + ]: 36 : Assert(rte->self_reference);
4703 : 36 : objectname = rte->ctename;
6250 4704 : 36 : objecttag = "CTE Name";
6267 4705 : 36 : break;
4706 : 416 : default:
4707 : 416 : break;
4708 : : }
4709 : :
6250 4710 [ + + ]: 29770 : if (es->format == EXPLAIN_FORMAT_TEXT)
4711 : : {
4712 : 29479 : appendStringInfoString(es->str, " on");
4713 [ + + ]: 29479 : if (namespace != NULL)
4714 : 3170 : appendStringInfo(es->str, " %s.%s", quote_identifier(namespace),
4715 : : quote_identifier(objectname));
4716 [ + + ]: 26309 : else if (objectname != NULL)
4717 : 25464 : appendStringInfo(es->str, " %s", quote_identifier(objectname));
5011 4718 [ + + + + ]: 29479 : if (objectname == NULL || strcmp(refname, objectname) != 0)
5112 4719 : 17427 : appendStringInfo(es->str, " %s", quote_identifier(refname));
4720 : : }
4721 : : else
4722 : : {
6250 4723 [ + - + - ]: 291 : if (objecttag != NULL && objectname != NULL)
4724 : 291 : ExplainPropertyText(objecttag, objectname, es);
4725 [ + + ]: 291 : if (namespace != NULL)
4726 : 8 : ExplainPropertyText("Schema", namespace, es);
5011 4727 : 291 : ExplainPropertyText("Alias", refname, es);
4728 : : }
6267 4729 : 29770 : }
4730 : :
4731 : : /*
4732 : : * Show extra information for a ModifyTable node
4733 : : *
4734 : : * We have three objectives here. First, if there's more than one target
4735 : : * table or it's different from the nominal target, identify the actual
4736 : : * target(s). Second, give FDWs a chance to display extra info about foreign
4737 : : * targets. Third, show information about ON CONFLICT.
4738 : : */
4739 : : static void
4153 andres@anarazel.de 4740 : 716 : show_modifytable_info(ModifyTableState *mtstate, List *ancestors,
4741 : : ExplainState *es)
4742 : : {
4200 tgl@sss.pgh.pa.us 4743 : 716 : ModifyTable *node = (ModifyTable *) mtstate->ps.plan;
4744 : : const char *operation;
4745 : : const char *foperation;
4746 : : bool labeltargets;
4747 : : int j;
4153 andres@anarazel.de 4748 : 716 : List *idxNames = NIL;
4749 : : ListCell *lst;
4750 : :
4200 tgl@sss.pgh.pa.us 4751 [ + + + + : 716 : switch (node->operation)
- ]
4752 : : {
4753 : 186 : case CMD_INSERT:
4754 : 186 : operation = "Insert";
4755 : 186 : foperation = "Foreign Insert";
4756 : 186 : break;
4757 : 284 : case CMD_UPDATE:
4758 : 284 : operation = "Update";
4759 : 284 : foperation = "Foreign Update";
4760 : 284 : break;
4761 : 114 : case CMD_DELETE:
4762 : 114 : operation = "Delete";
4763 : 114 : foperation = "Foreign Delete";
4764 : 114 : break;
1637 alvherre@alvh.no-ip. 4765 : 132 : case CMD_MERGE:
4766 : 132 : operation = "Merge";
4767 : : /* XXX unsupported for now, but avoid compiler noise */
4768 : 132 : foperation = "Foreign Merge";
4769 : 132 : break;
4200 tgl@sss.pgh.pa.us 4770 :UBC 0 : default:
4771 : 0 : operation = "???";
4772 : 0 : foperation = "Foreign ???";
4773 : 0 : break;
4774 : : }
4775 : :
4776 : : /*
4777 : : * Should we explicitly label target relations?
4778 : : *
4779 : : * If there's only one target relation, do not list it if it's the
4780 : : * relation named in the query, or if it has been pruned. (Normally
4781 : : * mtstate->resultRelInfo doesn't include pruned relations, but a single
4782 : : * pruned target relation may be present, if all other target relations
4783 : : * have been pruned. See ExecInitModifyTable().)
4784 : : */
1999 tgl@sss.pgh.pa.us 4785 [ + + ]:CBC 1334 : labeltargets = (mtstate->mt_nrels > 1 ||
4786 [ + - ]: 618 : (mtstate->mt_nrels == 1 &&
550 amitlan@postgresql.o 4787 [ + + + + ]: 706 : mtstate->resultRelInfo[0].ri_RangeTableIndex != node->nominalRelation &&
4788 : 88 : bms_is_member(mtstate->resultRelInfo[0].ri_RangeTableIndex,
4789 : 88 : mtstate->ps.state->es_unpruned_relids)));
4790 : :
4200 tgl@sss.pgh.pa.us 4791 [ + + ]: 716 : if (labeltargets)
4792 : 170 : ExplainOpenGroup("Target Tables", "Target Tables", false, es);
4793 : :
1999 4794 [ + + ]: 1613 : for (j = 0; j < mtstate->mt_nrels; j++)
4795 : : {
4200 4796 : 897 : ResultRelInfo *resultRelInfo = mtstate->resultRelInfo + j;
4797 : 897 : FdwRoutine *fdwroutine = resultRelInfo->ri_FdwRoutine;
4798 : :
4799 [ + + ]: 897 : if (labeltargets)
4800 : : {
4801 : : /* Open a group for this target */
4802 : 351 : ExplainOpenGroup("Target Table", NULL, true, es);
4803 : :
4804 : : /*
4805 : : * In text mode, decorate each target with operation type, so that
4806 : : * ExplainTargetRel's output of " on foo" will read nicely.
4807 : : */
4808 [ + - ]: 351 : if (es->format == EXPLAIN_FORMAT_TEXT)
4809 : : {
2430 4810 : 351 : ExplainIndentText(es);
4200 4811 [ + + ]: 351 : appendStringInfoString(es->str,
4812 : : fdwroutine ? foperation : operation);
4813 : : }
4814 : :
4815 : : /* Identify target */
4816 : 351 : ExplainTargetRel((Plan *) node,
4817 : : resultRelInfo->ri_RangeTableIndex,
4818 : : es);
4819 : :
4820 [ + - ]: 351 : if (es->format == EXPLAIN_FORMAT_TEXT)
4821 : : {
4822 : 351 : appendStringInfoChar(es->str, '\n');
4823 : 351 : es->indent++;
4824 : : }
4825 : : }
4826 : :
4827 : : /* Give FDW a chance if needed */
3838 rhaas@postgresql.org 4828 [ + + + + ]: 897 : if (!resultRelInfo->ri_usesFdwDirectModify &&
4829 : 47 : fdwroutine != NULL &&
4830 [ + - ]: 47 : fdwroutine->ExplainForeignModify != NULL)
4831 : : {
89 amitlan@postgresql.o 4832 : 47 : List *fdw_private = (List *) list_nth(mtstate->mt_fdwPrivLists, j);
4833 : :
4200 tgl@sss.pgh.pa.us 4834 : 47 : fdwroutine->ExplainForeignModify(mtstate,
4835 : : resultRelInfo,
4836 : : fdw_private,
4837 : : j,
4838 : : es);
4839 : : }
4840 : :
4841 [ + + ]: 897 : if (labeltargets)
4842 : : {
4843 : : /* Undo the indentation we added in text format */
4844 [ + - ]: 351 : if (es->format == EXPLAIN_FORMAT_TEXT)
4845 : 351 : es->indent--;
4846 : :
4847 : : /* Close the group */
4848 : 351 : ExplainCloseGroup("Target Table", NULL, true, es);
4849 : : }
4850 : : }
4851 : :
4852 : : /* Gather names of ON CONFLICT arbiter indexes */
4153 andres@anarazel.de 4853 [ + + + + : 864 : foreach(lst, node->arbiterIndexes)
+ + ]
4854 : : {
4855 : 148 : char *indexname = get_rel_name(lfirst_oid(lst));
4856 : :
4857 : 148 : idxNames = lappend(idxNames, indexname);
4858 : : }
4859 : :
4860 [ + + ]: 716 : if (node->onConflictAction != ONCONFLICT_NONE)
4861 : : {
220 dean.a.rasheed@gmail 4862 : 112 : const char *resolution = NULL;
4863 : :
4864 [ + + ]: 112 : if (node->onConflictAction == ONCONFLICT_NOTHING)
4865 : 44 : resolution = "NOTHING";
4866 [ + + ]: 68 : else if (node->onConflictAction == ONCONFLICT_UPDATE)
4867 : 52 : resolution = "UPDATE";
4868 : : else
4869 : : {
4870 [ - + ]: 16 : Assert(node->onConflictAction == ONCONFLICT_SELECT);
4871 [ + + - - : 16 : switch (node->onConflictLockStrength)
+ - ]
4872 : : {
4873 : 8 : case LCS_NONE:
4874 : 8 : resolution = "SELECT";
4875 : 8 : break;
4876 : 4 : case LCS_FORKEYSHARE:
4877 : 4 : resolution = "SELECT FOR KEY SHARE";
4878 : 4 : break;
220 dean.a.rasheed@gmail 4879 :UBC 0 : case LCS_FORSHARE:
4880 : 0 : resolution = "SELECT FOR SHARE";
4881 : 0 : break;
4882 : 0 : case LCS_FORNOKEYUPDATE:
4883 : 0 : resolution = "SELECT FOR NO KEY UPDATE";
4884 : 0 : break;
220 dean.a.rasheed@gmail 4885 :CBC 4 : case LCS_FORUPDATE:
4886 : 4 : resolution = "SELECT FOR UPDATE";
4887 : 4 : break;
4888 : : }
4889 : : }
4890 : :
4891 : 112 : ExplainPropertyText("Conflict Resolution", resolution, es);
4892 : :
4893 : : /*
4894 : : * Don't display arbiter indexes at all when DO NOTHING variant
4895 : : * implicitly ignores all conflicts
4896 : : */
4153 andres@anarazel.de 4897 [ + - ]: 112 : if (idxNames)
4898 : 112 : ExplainPropertyList("Conflict Arbiter Indexes", idxNames, es);
4899 : :
4900 : : /* ON CONFLICT DO SELECT/UPDATE WHERE qual is specially displayed */
4901 [ + + ]: 112 : if (node->onConflictWhere)
4902 : : {
4903 : 44 : show_upper_qual((List *) node->onConflictWhere, "Conflict Filter",
4904 : : &mtstate->ps, ancestors, es);
4905 : 44 : show_instrumentation_count("Rows Removed by Conflict Filter", 1, &mtstate->ps, es);
4906 : : }
4907 : :
4908 : : /* EXPLAIN ANALYZE display of actual outcome for each tuple proposed */
4909 [ - + - - ]: 112 : if (es->analyze && mtstate->ps.instrument)
4910 : : {
4911 : : double total;
4912 : : double insert_path;
4913 : : double other_path;
4914 : :
1999 tgl@sss.pgh.pa.us 4915 :UBC 0 : InstrEndLoop(outerPlanState(mtstate)->instrument);
4916 : :
4917 : : /* count the number of source rows */
4918 : 0 : total = outerPlanState(mtstate)->instrument->ntuples;
3085 alvherre@alvh.no-ip. 4919 : 0 : other_path = mtstate->ps.instrument->ntuples2;
4153 andres@anarazel.de 4920 : 0 : insert_path = total - other_path;
4921 : :
3110 4922 : 0 : ExplainPropertyFloat("Tuples Inserted", NULL,
4923 : : insert_path, 0, es);
4924 : 0 : ExplainPropertyFloat("Conflicting Tuples", NULL,
4925 : : other_path, 0, es);
4926 : : }
4927 : : }
1637 alvherre@alvh.no-ip. 4928 [ + + ]:CBC 604 : else if (node->operation == CMD_MERGE)
4929 : : {
4930 : : /* EXPLAIN ANALYZE display of tuples processed */
4931 [ + + + - ]: 132 : if (es->analyze && mtstate->ps.instrument)
4932 : : {
4933 : : double total;
4934 : : double insert_path;
4935 : : double update_path;
4936 : : double delete_path;
4937 : : double skipped_path;
4938 : :
4939 : 35 : InstrEndLoop(outerPlanState(mtstate)->instrument);
4940 : :
4941 : : /* count the number of source rows */
4942 : 35 : total = outerPlanState(mtstate)->instrument->ntuples;
4943 : 35 : insert_path = mtstate->mt_merge_inserted;
4944 : 35 : update_path = mtstate->mt_merge_updated;
4945 : 35 : delete_path = mtstate->mt_merge_deleted;
4946 : 35 : skipped_path = total - insert_path - update_path - delete_path;
4947 [ - + ]: 35 : Assert(skipped_path >= 0);
4948 : :
1586 4949 [ + - ]: 35 : if (es->format == EXPLAIN_FORMAT_TEXT)
4950 : : {
4951 [ + + ]: 35 : if (total > 0)
4952 : : {
4953 : 31 : ExplainIndentText(es);
4954 : 31 : appendStringInfoString(es->str, "Tuples:");
4955 [ + + ]: 31 : if (insert_path > 0)
4956 : 10 : appendStringInfo(es->str, " inserted=%.0f", insert_path);
4957 [ + + ]: 31 : if (update_path > 0)
4958 : 19 : appendStringInfo(es->str, " updated=%.0f", update_path);
4959 [ + + ]: 31 : if (delete_path > 0)
4960 : 8 : appendStringInfo(es->str, " deleted=%.0f", delete_path);
4961 [ + + ]: 31 : if (skipped_path > 0)
4962 : 24 : appendStringInfo(es->str, " skipped=%.0f", skipped_path);
4963 : 31 : appendStringInfoChar(es->str, '\n');
4964 : : }
4965 : : }
4966 : : else
4967 : : {
1586 alvherre@alvh.no-ip. 4968 :UBC 0 : ExplainPropertyFloat("Tuples Inserted", NULL, insert_path, 0, es);
4969 : 0 : ExplainPropertyFloat("Tuples Updated", NULL, update_path, 0, es);
4970 : 0 : ExplainPropertyFloat("Tuples Deleted", NULL, delete_path, 0, es);
4971 : 0 : ExplainPropertyFloat("Tuples Skipped", NULL, skipped_path, 0, es);
4972 : : }
4973 : : }
4974 : : }
4975 : :
4200 tgl@sss.pgh.pa.us 4976 [ + + ]:CBC 716 : if (labeltargets)
4977 : 170 : ExplainCloseGroup("Target Tables", "Target Tables", false, es);
4942 4978 : 716 : }
4979 : :
4980 : : /*
4981 : : * Explain what a "Result" node replaced.
4982 : : */
4983 : : static void
362 rhaas@postgresql.org 4984 : 2161 : show_result_replacement_info(Result *result, ExplainState *es)
4985 : : {
4986 : : StringInfoData buf;
4987 : 2161 : int nrels = 0;
4988 : 2161 : int rti = -1;
4989 : 2161 : bool found_non_result = false;
4990 : 2161 : char *replacement_type = "???";
4991 : :
4992 : : /* If the Result node has a subplan, it didn't replace anything. */
4993 [ + + ]: 2161 : if (result->plan.lefttree != NULL)
4994 : 1606 : return;
4995 : :
4996 : : /* Gating result nodes should have a subplan, and we don't. */
4997 [ - + ]: 1988 : Assert(result->result_type != RESULT_TYPE_GATING);
4998 : :
4999 [ - + + + : 1988 : switch (result->result_type)
+ - ]
5000 : : {
362 rhaas@postgresql.org 5001 :UBC 0 : case RESULT_TYPE_GATING:
5002 : 0 : replacement_type = "Gating";
5003 : 0 : break;
362 rhaas@postgresql.org 5004 :CBC 1750 : case RESULT_TYPE_SCAN:
5005 : 1750 : replacement_type = "Scan";
5006 : 1750 : break;
5007 : 80 : case RESULT_TYPE_JOIN:
5008 : 80 : replacement_type = "Join";
5009 : 80 : break;
5010 : 52 : case RESULT_TYPE_UPPER:
5011 : : /* a small white lie */
5012 : 52 : replacement_type = "Aggregate";
5013 : 52 : break;
5014 : 106 : case RESULT_TYPE_MINMAX:
5015 : 106 : replacement_type = "MinMaxAggregate";
5016 : 106 : break;
5017 : : }
5018 : :
5019 : : /*
5020 : : * Build up a comma-separated list of user-facing names for the range
5021 : : * table entries in the relids set.
5022 : : */
5023 : 1988 : initStringInfo(&buf);
5024 [ + + ]: 4130 : while ((rti = bms_next_member(result->relids, rti)) >= 0)
5025 : : {
5026 : 2142 : RangeTblEntry *rte = rt_fetch(rti, es->rtable);
5027 : : char *refname;
5028 : :
5029 : : /*
5030 : : * add_outer_joins_to_relids will add join RTIs to the relids set of a
5031 : : * join; if that join is then replaced with a Result node, we may see
5032 : : * such RTIs here. But we want to completely ignore those here,
5033 : : * because "a LEFT JOIN b ON whatever" is a join between a and b, not
5034 : : * a join between a, b, and an unnamed join.
5035 : : */
5036 [ + + ]: 2142 : if (rte->rtekind == RTE_JOIN)
5037 : 80 : continue;
5038 : :
5039 : : /* Count the number of rels that aren't ignored completely. */
5040 : 2062 : ++nrels;
5041 : :
5042 : : /* Work out what reference name to use and add it to the string. */
5043 : 2062 : refname = (char *) list_nth(es->rtable_names, rti - 1);
5044 [ - + ]: 2062 : if (refname == NULL)
362 rhaas@postgresql.org 5045 :UBC 0 : refname = rte->eref->aliasname;
362 rhaas@postgresql.org 5046 [ + + ]:CBC 2062 : if (buf.len > 0)
5047 : 212 : appendStringInfoString(&buf, ", ");
5048 : 2062 : appendStringInfoString(&buf, refname);
5049 : :
5050 : : /* Keep track of whether we see anything other than RTE_RESULT. */
5051 [ + + ]: 2062 : if (rte->rtekind != RTE_RESULT)
5052 : 625 : found_non_result = true;
5053 : : }
5054 : :
5055 : : /*
5056 : : * If this Result node is because of a single RTE that is RTE_RESULT, it
5057 : : * is not really replacing anything at all, because there's no other
5058 : : * method for implementing a scan of such an RTE, so we don't display the
5059 : : * Replaces line in such cases.
5060 : : */
5061 [ + + + + ]: 1988 : if (nrels <= 1 && !found_non_result &&
5062 [ + + ]: 1571 : result->result_type == RESULT_TYPE_SCAN)
5063 : 1433 : return;
5064 : :
5065 : : /* Say what we replaced, with list of rels if available. */
5066 [ + + ]: 555 : if (buf.len == 0)
5067 : 138 : ExplainPropertyText("Replaces", replacement_type, es);
5068 : : else
5069 : : {
5070 : 417 : char *s = psprintf("%s on %s", replacement_type, buf.data);
5071 : :
5072 : 417 : ExplainPropertyText("Replaces", s, es);
5073 : : }
5074 : : }
5075 : :
5076 : : /*
5077 : : * Explain the constituent plans of an Append, MergeAppend,
5078 : : * BitmapAnd, or BitmapOr node.
5079 : : *
5080 : : * The ancestors list should already contain the immediate parent of these
5081 : : * plans.
5082 : : */
5083 : : static void
2420 tgl@sss.pgh.pa.us 5084 : 2793 : ExplainMemberNodes(PlanState **planstates, int nplans,
5085 : : List *ancestors, ExplainState *es)
5086 : : {
5087 : : int j;
5088 : :
5089 [ + + ]: 11211 : for (j = 0; j < nplans; j++)
5913 5090 : 8418 : ExplainNode(planstates[j], ancestors,
5091 : : "Member", NULL, es);
6267 5092 : 2793 : }
5093 : :
5094 : : /*
5095 : : * Report about any pruned subnodes of an Append or MergeAppend node.
5096 : : *
5097 : : * nplans indicates the number of live subplans.
5098 : : * nchildren indicates the original number of subnodes in the Plan;
5099 : : * some of these may have been pruned by the run-time pruning code.
5100 : : */
5101 : : static void
2420 5102 : 2668 : ExplainMissingMembers(int nplans, int nchildren, ExplainState *es)
5103 : : {
5104 [ + + + + ]: 2668 : if (nplans < nchildren || es->format != EXPLAIN_FORMAT_TEXT)
5105 : 170 : ExplainPropertyInteger("Subplans Removed", NULL,
5106 : 170 : nchildren - nplans, es);
5107 : 2668 : }
5108 : :
5109 : : /*
5110 : : * Explain a list of SubPlans (or initPlans, which also use SubPlan nodes).
5111 : : *
5112 : : * The ancestors list should already contain the immediate parent of these
5113 : : * SubPlans.
5114 : : */
5115 : : static void
5913 5116 : 1245 : ExplainSubPlans(List *plans, List *ancestors,
5117 : : const char *relationship, ExplainState *es)
5118 : : {
5119 : : ListCell *lst;
5120 : :
6267 5121 [ + - + + : 2624 : foreach(lst, plans)
+ + ]
5122 : : {
5123 : 1379 : SubPlanState *sps = (SubPlanState *) lfirst(lst);
3477 andres@anarazel.de 5124 : 1379 : SubPlan *sp = sps->subplan;
5125 : : char *cooked_plan_name;
5126 : :
5127 : : /*
5128 : : * There can be multiple SubPlan nodes referencing the same physical
5129 : : * subplan (same plan_id, which is its index in PlannedStmt.subplans).
5130 : : * We should print a subplan only once, so track which ones we already
5131 : : * printed. This state must be global across the plan tree, since the
5132 : : * duplicate nodes could be in different plan nodes, eg both a bitmap
5133 : : * indexscan's indexqual and its parent heapscan's recheck qual. (We
5134 : : * do not worry too much about which plan node we show the subplan as
5135 : : * attached to in such cases.)
5136 : : */
3723 tgl@sss.pgh.pa.us 5137 [ + + ]: 1379 : if (bms_is_member(sp->plan_id, es->printed_subplans))
5138 : 60 : continue;
5139 : 1319 : es->printed_subplans = bms_add_member(es->printed_subplans,
5140 : : sp->plan_id);
5141 : :
5142 : : /*
5143 : : * Treat the SubPlan node as an ancestor of the plan node(s) within
5144 : : * it, so that ruleutils.c can find the referents of subplan
5145 : : * parameters.
5146 : : */
2475 5147 : 1319 : ancestors = lcons(sp, ancestors);
5148 : :
5149 : : /*
5150 : : * The plan has a name like exists_1 or rowcompare_2, but here we want
5151 : : * to prefix that with CTE, InitPlan, or SubPlan, as appropriate, for
5152 : : * display purposes.
5153 : : */
348 rhaas@postgresql.org 5154 [ + + ]: 1319 : if (sp->subLinkType == CTE_SUBLINK)
5155 : 167 : cooked_plan_name = psprintf("CTE %s", sp->plan_name);
5156 [ + + ]: 1152 : else if (sp->isInitPlan)
5157 : 646 : cooked_plan_name = psprintf("InitPlan %s", sp->plan_name);
5158 : : else
5159 : 506 : cooked_plan_name = psprintf("SubPlan %s", sp->plan_name);
5160 : :
5913 tgl@sss.pgh.pa.us 5161 : 1319 : ExplainNode(sps->planstate, ancestors,
5162 : : relationship, cooked_plan_name, es);
5163 : :
2475 5164 : 1319 : ancestors = list_delete_first(ancestors);
5165 : : }
6250 5166 : 1245 : }
5167 : :
5168 : : /*
5169 : : * Explain a list of children of a CustomScan.
5170 : : */
5171 : : static void
4104 rhaas@postgresql.org 5172 :GBC 5 : ExplainCustomChildren(CustomScanState *css, List *ancestors, ExplainState *es)
5173 : : {
5174 : : ListCell *cell;
5175 : 5 : const char *label =
1220 tgl@sss.pgh.pa.us 5176 [ + - ]: 5 : (list_length(css->custom_ps) != 1 ? "children" : "child");
5177 : :
4075 5178 [ - + - - : 5 : foreach(cell, css->custom_ps)
- + ]
4104 rhaas@postgresql.org 5179 :UBC 0 : ExplainNode((PlanState *) lfirst(cell), ancestors, label, NULL, es);
4104 rhaas@postgresql.org 5180 :GBC 5 : }
5181 : :
5182 : : /*
5183 : : * Create a per-plan-node workspace for collecting per-worker data.
5184 : : *
5185 : : * Output related to each worker will be temporarily "set aside" into a
5186 : : * separate buffer, which we'll merge into the main output stream once
5187 : : * we've processed all data for the plan node. This makes it feasible to
5188 : : * generate a coherent sub-group of fields for each worker, even though the
5189 : : * code that produces the fields is in several different places in this file.
5190 : : * Formatting of such a set-aside field group is managed by
5191 : : * ExplainOpenSetAsideGroup and ExplainSaveGroup/ExplainRestoreGroup.
5192 : : */
5193 : : static ExplainWorkersState *
2430 tgl@sss.pgh.pa.us 5194 :CBC 684 : ExplainCreateWorkersState(int num_workers)
5195 : : {
5196 : : ExplainWorkersState *wstate;
5197 : :
284 michael@paquier.xyz 5198 : 684 : wstate = palloc_object(ExplainWorkersState);
2430 tgl@sss.pgh.pa.us 5199 : 684 : wstate->num_workers = num_workers;
34 michael@paquier.xyz 5200 :GNC 684 : wstate->worker_inited = palloc0_array(bool, num_workers);
5201 : 684 : wstate->worker_str = palloc0_array(StringInfoData, num_workers);
5202 : 684 : wstate->worker_state_save = palloc_array(int, num_workers);
2430 tgl@sss.pgh.pa.us 5203 :CBC 684 : return wstate;
5204 : : }
5205 : :
5206 : : /*
5207 : : * Begin or resume output into the set-aside group for worker N.
5208 : : */
5209 : : static void
5210 : 96 : ExplainOpenWorker(int n, ExplainState *es)
5211 : : {
5212 : 96 : ExplainWorkersState *wstate = es->workers_state;
5213 : :
5214 [ - + ]: 96 : Assert(wstate);
5215 [ + - - + ]: 96 : Assert(n >= 0 && n < wstate->num_workers);
5216 : :
5217 : : /* Save prior output buffer pointer */
5218 : 96 : wstate->prev_str = es->str;
5219 : :
5220 [ + + ]: 96 : if (!wstate->worker_inited[n])
5221 : : {
5222 : : /* First time through, so create the buffer for this worker */
5223 : 48 : initStringInfo(&wstate->worker_str[n]);
5224 : 48 : es->str = &wstate->worker_str[n];
5225 : :
5226 : : /*
5227 : : * Push suitable initial formatting state for this worker's field
5228 : : * group. We allow one extra logical nesting level, since this group
5229 : : * will eventually be wrapped in an outer "Workers" group.
5230 : : */
5231 : 48 : ExplainOpenSetAsideGroup("Worker", NULL, true, 2, es);
5232 : :
5233 : : /*
5234 : : * In non-TEXT formats we always emit a "Worker Number" field, even if
5235 : : * there's no other data for this worker.
5236 : : */
5237 [ + + ]: 48 : if (es->format != EXPLAIN_FORMAT_TEXT)
5238 : 32 : ExplainPropertyInteger("Worker Number", NULL, n, es);
5239 : :
5240 : 48 : wstate->worker_inited[n] = true;
5241 : : }
5242 : : else
5243 : : {
5244 : : /* Resuming output for a worker we've already emitted some data for */
5245 : 48 : es->str = &wstate->worker_str[n];
5246 : :
5247 : : /* Restore formatting state saved by last ExplainCloseWorker() */
5248 : 48 : ExplainRestoreGroup(es, 2, &wstate->worker_state_save[n]);
5249 : : }
5250 : :
5251 : : /*
5252 : : * In TEXT format, prefix the first output line for this worker with
5253 : : * "Worker N:". Then, any additional lines should be indented one more
5254 : : * stop than the "Worker N" line is.
5255 : : */
5256 [ + + ]: 96 : if (es->format == EXPLAIN_FORMAT_TEXT)
5257 : : {
5258 [ + - ]: 16 : if (es->str->len == 0)
5259 : : {
5260 : 16 : ExplainIndentText(es);
5261 : 16 : appendStringInfo(es->str, "Worker %d: ", n);
5262 : : }
5263 : :
5264 : 16 : es->indent++;
5265 : : }
5266 : 96 : }
5267 : :
5268 : : /*
5269 : : * End output for worker N --- must pair with previous ExplainOpenWorker call
5270 : : */
5271 : : static void
5272 : 96 : ExplainCloseWorker(int n, ExplainState *es)
5273 : : {
5274 : 96 : ExplainWorkersState *wstate = es->workers_state;
5275 : :
5276 [ - + ]: 96 : Assert(wstate);
5277 [ + - - + ]: 96 : Assert(n >= 0 && n < wstate->num_workers);
5278 [ - + ]: 96 : Assert(wstate->worker_inited[n]);
5279 : :
5280 : : /*
5281 : : * Save formatting state in case we do another ExplainOpenWorker(), then
5282 : : * pop the formatting stack.
5283 : : */
5284 : 96 : ExplainSaveGroup(es, 2, &wstate->worker_state_save[n]);
5285 : :
5286 : : /*
5287 : : * In TEXT format, if we didn't actually produce any output line(s) then
5288 : : * truncate off the partial line emitted by ExplainOpenWorker. (This is
5289 : : * to avoid bogus output if, say, show_buffer_usage chooses not to print
5290 : : * anything for the worker.) Also fix up the indent level.
5291 : : */
5292 [ + + ]: 96 : if (es->format == EXPLAIN_FORMAT_TEXT)
5293 : : {
5294 [ + - - + ]: 16 : while (es->str->len > 0 && es->str->data[es->str->len - 1] != '\n')
2430 tgl@sss.pgh.pa.us 5295 :UBC 0 : es->str->data[--(es->str->len)] = '\0';
5296 : :
2430 tgl@sss.pgh.pa.us 5297 :CBC 16 : es->indent--;
5298 : : }
5299 : :
5300 : : /* Restore prior output buffer pointer */
5301 : 96 : es->str = wstate->prev_str;
5302 : 96 : }
5303 : :
5304 : : /*
5305 : : * Print per-worker info for current node, then free the ExplainWorkersState.
5306 : : */
5307 : : static void
5308 : 684 : ExplainFlushWorkersState(ExplainState *es)
5309 : : {
5310 : 684 : ExplainWorkersState *wstate = es->workers_state;
5311 : :
5312 : 684 : ExplainOpenGroup("Workers", "Workers", false, es);
5313 [ + + ]: 1804 : for (int i = 0; i < wstate->num_workers; i++)
5314 : : {
5315 [ + + ]: 1120 : if (wstate->worker_inited[i])
5316 : : {
5317 : : /* This must match previous ExplainOpenSetAsideGroup call */
5318 : 48 : ExplainOpenGroup("Worker", NULL, true, es);
5319 : 48 : appendStringInfoString(es->str, wstate->worker_str[i].data);
5320 : 48 : ExplainCloseGroup("Worker", NULL, true, es);
5321 : :
5322 : 48 : pfree(wstate->worker_str[i].data);
5323 : : }
5324 : : }
5325 : 684 : ExplainCloseGroup("Workers", "Workers", false, es);
5326 : :
5327 : 684 : pfree(wstate->worker_inited);
5328 : 684 : pfree(wstate->worker_str);
5329 : 684 : pfree(wstate->worker_state_save);
5330 : 684 : pfree(wstate);
5331 : 684 : }
|