Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit eb4c723

Browse files
committed
Make ExecInitExpr build the list of SubPlans found in a plan tree in order
of discovery, rather than reverse order. This doesn't matter functionally (I suppose the previous coding dates from the time when lcons was markedly cheaper than lappend). However now that EXPLAIN is labeling subplans with IDs that are based on order of creation, this may help produce a slightly less surprising printout.
1 parent fbcce08 commit eb4c723

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/executor/execQual.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/executor/execQual.c,v 1.244 2009/04/02 22:39:29 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/executor/execQual.c,v 1.245 2009/04/05 20:32:06 tgl Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -4326,7 +4326,7 @@ ExecInitExpr(Expr *node, PlanState *parent)
43264326
sstate = ExecInitSubPlan(subplan, parent);
43274327

43284328
/* Add SubPlanState nodes to parent->subPlan */
4329-
parent->subPlan = lcons(sstate, parent->subPlan);
4329+
parent->subPlan = lappend(parent->subPlan, sstate);
43304330

43314331
state = (ExprState *) sstate;
43324332
}

0 commit comments

Comments
 (0)