Fix pg_dump bug in the database-level collation patch. "datcollate" and
[PostgreSQL.git] / src / include / executor / nodeSubplan.h
blobb156c4f66c317e0c32fda41ff680edfca4892891
1 /*-------------------------------------------------------------------------
3 * nodeSubplan.h
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef NODESUBPLAN_H
15 #define NODESUBPLAN_H
17 #include "nodes/execnodes.h"
19 extern SubPlanState *ExecInitSubPlan(SubPlan *subplan, PlanState *parent);
21 extern AlternativeSubPlanState *ExecInitAlternativeSubPlan(AlternativeSubPlan *asplan, PlanState *parent);
23 extern void ExecReScanSetParamPlan(SubPlanState *node, PlanState *parent);
25 extern void ExecSetParamPlan(SubPlanState *node, ExprContext *econtext);
27 #endif /* NODESUBPLAN_H */