mirror of
https://github.com/postgres/postgres.git
synced 2025-08-27 07:42:10 +03:00
26 lines
823 B
C
26 lines
823 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeAppend.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeAppend.h,v 1.21 2004/08/29 04:13:06 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEAPPEND_H
|
|
#define NODEAPPEND_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern int ExecCountSlotsAppend(Append *node);
|
|
extern AppendState *ExecInitAppend(Append *node, EState *estate);
|
|
extern TupleTableSlot *ExecProcAppend(AppendState *node);
|
|
extern void ExecEndAppend(AppendState *node);
|
|
extern void ExecReScanAppend(AppendState *node, ExprContext *exprCtxt);
|
|
|
|
#endif /* NODEAPPEND_H */
|