diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-12-13 19:46:01 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-12-13 19:46:01 +0000 |
commit | 3a4f7dde16ad81b2319b9a4924a6023710a2fefd (patch) | |
tree | 248cf66fd94d40072b5ba8bb8e5437a6ea8399e5 /src/include/executor/nodeSubplan.h | |
parent | 77b7a740f95250af7d78f69e9c906c3e53f32e7b (diff) | |
download | postgresql-3a4f7dde16ad81b2319b9a4924a6023710a2fefd.tar.gz postgresql-3a4f7dde16ad81b2319b9a4924a6023710a2fefd.zip |
Phase 3 of read-only-plans project: ExecInitExpr now builds expression
execution state trees, and ExecEvalExpr takes an expression state tree
not an expression plan tree. The plan tree is now read-only as far as
the executor is concerned. Next step is to begin actually exploiting
this property.
Diffstat (limited to 'src/include/executor/nodeSubplan.h')
-rw-r--r-- | src/include/executor/nodeSubplan.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/include/executor/nodeSubplan.h b/src/include/executor/nodeSubplan.h index e025c9de696..97f4b66bcd6 100644 --- a/src/include/executor/nodeSubplan.h +++ b/src/include/executor/nodeSubplan.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: nodeSubplan.h,v 1.13 2002/12/12 15:49:40 tgl Exp $ + * $Id: nodeSubplan.h,v 1.14 2002/12/13 19:45:56 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -16,12 +16,13 @@ #include "nodes/execnodes.h" -extern SubPlanState *ExecInitSubPlan(SubPlanExpr *node, EState *estate); -extern Datum ExecSubPlan(SubPlanState *node, List *pvar, ExprContext *econtext, - bool *isNull); -extern void ExecEndSubPlan(SubPlanState *node); -extern void ExecReScanSetParamPlan(SubPlanState *node, PlanState *parent); +extern void ExecInitSubPlan(SubPlanExprState *sstate, EState *estate); +extern Datum ExecSubPlan(SubPlanExprState *node, + ExprContext *econtext, + bool *isNull); +extern void ExecEndSubPlan(SubPlanExprState *node); +extern void ExecReScanSetParamPlan(SubPlanExprState *node, PlanState *parent); -extern void ExecSetParamPlan(SubPlanState *node, ExprContext *econtext); +extern void ExecSetParamPlan(SubPlanExprState *node, ExprContext *econtext); #endif /* NODESUBPLAN_H */ |