diff options
Diffstat (limited to 'src/include/executor/nodeSetOp.h')
-rw-r--r-- | src/include/executor/nodeSetOp.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/include/executor/nodeSetOp.h b/src/include/executor/nodeSetOp.h new file mode 100644 index 00000000000..0414cc46ef0 --- /dev/null +++ b/src/include/executor/nodeSetOp.h @@ -0,0 +1,25 @@ +/*------------------------------------------------------------------------- + * + * nodeSetOp.h + * + * + * + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California + * + * $Id: nodeSetOp.h,v 1.1 2000/10/05 19:11:36 tgl Exp $ + * + *------------------------------------------------------------------------- + */ +#ifndef NODESETOP_H +#define NODESETOP_H + +#include "nodes/plannodes.h" + +extern TupleTableSlot *ExecSetOp(SetOp *node); +extern bool ExecInitSetOp(SetOp *node, EState *estate, Plan *parent); +extern int ExecCountSlotsSetOp(SetOp *node); +extern void ExecEndSetOp(SetOp *node); +extern void ExecReScanSetOp(SetOp *node, ExprContext *exprCtxt, Plan *parent); + +#endif /* NODESETOP_H */ |