postgresql/src/include/executor/nodeAppend.h

22 lines
607 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* nodeAppend.h--
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
1997-09-08 22:59:27 +02:00
* $Id: nodeAppend.h,v 1.5 1997/09/08 20:58:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef NODEAPPEND_H
#define NODEAPPEND_H
1997-09-08 22:59:27 +02:00
extern bool ExecInitAppend(Append *node, EState * estate, Plan * parent);
extern int ExecCountSlotsAppend(Append *node);
extern TupleTableSlot *ExecProcAppend(Append *node);
extern void ExecEndAppend(Append *node);
#endif /* NODEAPPEND_H */