aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/explain.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/commands/explain.c')
-rw-r--r--src/backend/commands/explain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/explain.c b/src/backend/commands/explain.c
index f494ec98e51..a5e44c046f7 100644
--- a/src/backend/commands/explain.c
+++ b/src/backend/commands/explain.c
@@ -1191,7 +1191,7 @@ ExplainNode(PlanState *planstate, List *ancestors,
{
ExplainOpenGroup("Plans", "Plans", false, es);
/* Pass current PlanState as head of ancestors list for children */
- ancestors = lcons(planstate, ancestors);
+ ancestors = lcons(planstate, ancestors);
}
/* initPlan-s */
@@ -1251,7 +1251,7 @@ ExplainNode(PlanState *planstate, List *ancestors,
/* end of child plans */
if (haschildren)
{
- ancestors = list_delete_first(ancestors);
+ ancestors = list_delete_first(ancestors);
ExplainCloseGroup("Plans", "Plans", false, es);
}