Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / include / executor / nodeAppend.h
blob47157240689e0f36017c0bd0bfcdd037c758665c
1 /*-------------------------------------------------------------------------
3 * nodeAppend.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 NODEAPPEND_H
15 #define NODEAPPEND_H
17 #include "nodes/execnodes.h"
19 extern int ExecCountSlotsAppend(Append *node);
20 extern AppendState *ExecInitAppend(Append *node, EState *estate, int eflags);
21 extern TupleTableSlot *ExecAppend(AppendState *node);
22 extern void ExecEndAppend(AppendState *node);
23 extern void ExecReScanAppend(AppendState *node, ExprContext *exprCtxt);
25 #endif /* NODEAPPEND_H */