Fix pg_dump bug in the database-level collation patch. "datcollate" and
[PostgreSQL.git] / src / include / executor / nodeSetOp.h
blob8cb6e64ae93ef5c462ce2336a6e79f9952ed2bd0
1 /*-------------------------------------------------------------------------
3 * nodeSetOp.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 NODESETOP_H
15 #define NODESETOP_H
17 #include "nodes/execnodes.h"
19 extern int ExecCountSlotsSetOp(SetOp *node);
20 extern SetOpState *ExecInitSetOp(SetOp *node, EState *estate, int eflags);
21 extern TupleTableSlot *ExecSetOp(SetOpState *node);
22 extern void ExecEndSetOp(SetOpState *node);
23 extern void ExecReScanSetOp(SetOpState *node, ExprContext *exprCtxt);
25 #endif /* NODESETOP_H */