diff options
Diffstat (limited to 'src/include/executor/nodeAppend.h')
-rw-r--r-- | src/include/executor/nodeAppend.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/executor/nodeAppend.h b/src/include/executor/nodeAppend.h index 4e9255b795d..3d18b66d164 100644 --- a/src/include/executor/nodeAppend.h +++ b/src/include/executor/nodeAppend.h @@ -7,19 +7,19 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: nodeAppend.h,v 1.17 2002/06/20 20:29:49 momjian Exp $ + * $Id: nodeAppend.h,v 1.18 2002/12/05 15:50:37 tgl Exp $ * *------------------------------------------------------------------------- */ #ifndef NODEAPPEND_H #define NODEAPPEND_H -#include "nodes/plannodes.h" +#include "nodes/execnodes.h" -extern bool ExecInitAppend(Append *node, EState *estate, Plan *parent); extern int ExecCountSlotsAppend(Append *node); -extern TupleTableSlot *ExecProcAppend(Append *node); -extern void ExecEndAppend(Append *node); -extern void ExecReScanAppend(Append *node, ExprContext *exprCtxt, Plan *parent); +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 */ |