OSDN Git Service

Remove no-longer-needed ExecCountSlots infrastructure.
[pg-rex/syncrep.git] / src / include / executor / nodeAppend.h
1 /*-------------------------------------------------------------------------
2  *
3  * nodeAppend.h
4  *
5  *
6  *
7  * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $PostgreSQL: pgsql/src/include/executor/nodeAppend.h,v 1.29 2009/09/27 21:10:53 tgl Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef NODEAPPEND_H
15 #define NODEAPPEND_H
16
17 #include "nodes/execnodes.h"
18
19 extern AppendState *ExecInitAppend(Append *node, EState *estate, int eflags);
20 extern TupleTableSlot *ExecAppend(AppendState *node);
21 extern void ExecEndAppend(AppendState *node);
22 extern void ExecReScanAppend(AppendState *node, ExprContext *exprCtxt);
23
24 #endif   /* NODEAPPEND_H */