diff options
Diffstat (limited to 'src/include/executor/nodeAppend.h')
-rw-r--r-- | src/include/executor/nodeAppend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/executor/nodeAppend.h b/src/include/executor/nodeAppend.h index ce42e5b072b..6b2cbf3671d 100644 --- a/src/include/executor/nodeAppend.h +++ b/src/include/executor/nodeAppend.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/executor/nodeAppend.h,v 1.23 2004/12/31 22:03:29 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/executor/nodeAppend.h,v 1.24 2006/02/28 04:10:28 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -17,7 +17,7 @@ #include "nodes/execnodes.h" extern int ExecCountSlotsAppend(Append *node); -extern AppendState *ExecInitAppend(Append *node, EState *estate); +extern AppendState *ExecInitAppend(Append *node, EState *estate, int eflags); extern TupleTableSlot *ExecAppend(AppendState *node); extern void ExecEndAppend(AppendState *node); extern void ExecReScanAppend(AppendState *node, ExprContext *exprCtxt); |