1998-02-12 22:46:56 -05:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
1999-02-13 18:22:53 -05:00
|
|
|
* nodeSubplan.h
|
1998-02-12 22:46:56 -05:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef NODESUBPLAN_H
|
|
|
|
|
#define NODESUBPLAN_H
|
|
|
|
|
|
|
|
|
|
#include "nodes/plannodes.h"
|
|
|
|
|
|
1999-11-12 01:39:34 -05:00
|
|
|
extern Datum ExecSubPlan(SubPlan *node, List *pvar, ExprContext *econtext,
|
2000-04-12 13:17:23 -04:00
|
|
|
bool *isNull);
|
1998-02-12 22:46:56 -05:00
|
|
|
extern bool ExecInitSubPlan(SubPlan *node, EState *estate, Plan *parent);
|
1998-02-25 23:46:47 -05:00
|
|
|
extern void ExecReScanSetParamPlan(SubPlan *node, Plan *parent);
|
2000-07-11 22:37:39 -04:00
|
|
|
extern void ExecSetParamPlan(SubPlan *node, ExprContext *econtext);
|
1998-02-12 22:46:56 -05:00
|
|
|
extern void ExecEndSubPlan(SubPlan *node);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
1998-09-01 00:40:42 -04:00
|
|
|
#endif /* NODESUBPLAN_H */
|