|
12 | 12 | * |
13 | 13 | * |
14 | 14 | * IDENTIFICATION |
15 | | - * $PostgreSQL: pgsql/src/backend/executor/execProcnode.c,v 1.41 2003/11/29 19:51:48 pgsql Exp $ |
| 15 | + * $PostgreSQL: pgsql/src/backend/executor/execProcnode.c,v 1.42 2004/03/02 22:17:34 tgl Exp $ |
16 | 16 | * |
17 | 17 | *------------------------------------------------------------------------- |
18 | 18 | */ |
@@ -242,16 +242,13 @@ ExecInitNode(Plan *node, EState *estate) |
242 | 242 | * do this after initializing initPlans, in case their arguments |
243 | 243 | * contain subPlans (is that actually possible? perhaps not). |
244 | 244 | */ |
245 | | -subps=NIL; |
246 | 245 | foreach(subp,result->subPlan) |
247 | 246 | { |
248 | 247 | SubPlanState*sstate= (SubPlanState*)lfirst(subp); |
249 | 248 |
|
250 | 249 | Assert(IsA(sstate,SubPlanState)); |
251 | 250 | ExecInitSubPlan(sstate,estate); |
252 | | -subps=lappend(subps,sstate); |
253 | 251 | } |
254 | | -result->subPlan=subps; |
255 | 252 |
|
256 | 253 | /* Set up instrumentation for this node if requested */ |
257 | 254 | if (estate->es_instrument) |
|