Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / include / executor / nodeSetOp.h
blob18bf0094acc3e4a13c7fe35efb629ddef43d971c
1 /*-------------------------------------------------------------------------
3 * nodeSetOp.h
7 * Portions Copyright (c) 1996-2009, 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 */