@@ -2,7 +2,7 @@ diff --git a/src/backend/commands/explain.c b/src/backend/commands/explain.c
22index 10644dfac4..7106ed4257 100644
33--- a/src/backend/commands/explain.c
44+++ b/src/backend/commands/explain.c
5- @@ -984 ,14 +984 ,36 @@ report_triggers(ResultRelInfo *rInfo, bool show_relname, ExplainState *es)
5+ @@ -990 ,14 +990 ,36 @@ report_triggers(ResultRelInfo *rInfo, bool show_relname, ExplainState *es)
66 char *relname;
77 char *conname = NULL;
88
@@ -40,7 +40,7 @@ index 10644dfac4..7106ed4257 100644
4040 continue;
4141
4242 ExplainOpenGroup("Trigger", NULL, true, es);
43- @@ -1017 ,9 +1039 ,9 @@ report_triggers(ResultRelInfo *rInfo, bool show_relname, ExplainState *es)
43+ @@ -1023 ,9 +1045 ,9 @@ report_triggers(ResultRelInfo *rInfo, bool show_relname, ExplainState *es)
4444 appendStringInfo(es->str, " on %s", relname);
4545 if (es->timing)
4646 appendStringInfo(es->str, ": time=%.3f calls=%.0f\n",
@@ -52,7 +52,7 @@ index 10644dfac4..7106ed4257 100644
5252 }
5353 else
5454 {
55- @@ -1028 ,9 +1050 ,8 @@ report_triggers(ResultRelInfo *rInfo, bool show_relname, ExplainState *es)
55+ @@ -1034 ,9 +1056 ,8 @@ report_triggers(ResultRelInfo *rInfo, bool show_relname, ExplainState *es)
5656 ExplainPropertyText("Constraint Name", conname, es);
5757 ExplainPropertyText("Relation", relname, es);
5858 if (es->timing)
@@ -64,7 +64,7 @@ index 10644dfac4..7106ed4257 100644
6464 }
6565
6666 if (conname)
67- @@ -1600 ,8 +1621 ,11 @@ ExplainNode(PlanState *planstate, List *ancestors,
67+ @@ -1609 ,8 +1630 ,11 @@ ExplainNode(PlanState *planstate, List *ancestors,
6868 * instrumentation results the user didn't ask for. But we do the
6969 * InstrEndLoop call anyway, if possible, to reduce the number of cases
7070 * auto_explain has to contend with.
@@ -77,7 +77,7 @@ index 10644dfac4..7106ed4257 100644
7777 InstrEndLoop(planstate->instrument);
7878
7979 if (es->analyze &&
80- @@ -1636 ,7 +1660 ,7 @@ ExplainNode(PlanState *planstate, List *ancestors,
80+ @@ -1645 ,7 +1669 ,7 @@ ExplainNode(PlanState *planstate, List *ancestors,
8181 ExplainPropertyFloat("Actual Loops", NULL, nloops, 0, es);
8282 }
8383 }
@@ -86,7 +86,7 @@ index 10644dfac4..7106ed4257 100644
8686 {
8787 if (es->format == EXPLAIN_FORMAT_TEXT)
8888 appendStringInfoString(es->str, " (never executed)");
89- @@ -1652 ,6 +1676 ,75 @@ ExplainNode(PlanState *planstate, List *ancestors,
89+ @@ -1661 ,6 +1685 ,75 @@ ExplainNode(PlanState *planstate, List *ancestors,
9090 }
9191 }
9292
@@ -162,7 +162,7 @@ index 10644dfac4..7106ed4257 100644
162162 /* in text format, first line ends here */
163163 if (es->format == EXPLAIN_FORMAT_TEXT)
164164 appendStringInfoChar(es->str, '\n');
165- @@ -2051 ,6 +2144 ,9 @@ ExplainNode(PlanState *planstate, List *ancestors,
165+ @@ -2068 ,6 +2161 ,9 @@ ExplainNode(PlanState *planstate, List *ancestors,
166166
167167 /* Prepare per-worker buffer/WAL usage */
168168 if (es->workers_state && (es->buffers || es->wal) && es->verbose)
@@ -172,7 +172,7 @@ index 10644dfac4..7106ed4257 100644
172172 {
173173 WorkerInstrumentation *w = planstate->worker_instrument;
174174
175- @@ -3015 ,6 +3111 ,11 @@ show_hash_info(HashState *hashstate, ExplainState *es)
175+ @@ -3032 ,6 +3128 ,11 @@ show_hash_info(HashState *hashstate, ExplainState *es)
176176 memcpy(&hinstrument, hashstate->hinstrument,
177177 sizeof(HashInstrumentation));
178178
@@ -184,7 +184,7 @@ index 10644dfac4..7106ed4257 100644
184184 /*
185185 * Merge results from workers. In the parallel-oblivious case, the
186186 * results from all participants should be identical, except where
187- @@ -3392 ,20 +3493 ,16 @@ show_instrumentation_count(const char *qlabel, int which,
187+ @@ -3412 ,20 +3513 ,16 @@ show_instrumentation_count(const char *qlabel, int which,
188188 if (!es->analyze || !planstate->instrument)
189189 return;
190190
@@ -209,7 +209,7 @@ index 10644dfac4..7106ed4257 100644
209209 }
210210
211211 /*
212- @@ -3977 ,15 +4074 ,27 @@ show_modifytable_info(ModifyTableState *mtstate, List *ancestors,
212+ @@ -4028 ,15 +4125 ,27 @@ show_modifytable_info(ModifyTableState *mtstate, List *ancestors,
213213 double insert_path;
214214 double other_path;
215215
0 commit comments