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,
|
|
|
|
|
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);
|
|
|
|
|
extern void ExecSetParamPlan(SubPlan *node);
|
1998-02-12 22:46:56 -05:00
|
|
|
extern void ExecEndSubPlan(SubPlan *node);
|
|
|
|
|
|
1998-09-01 00:40:42 -04:00
|
|
|
#endif /* NODESUBPLAN_H */
|