diff options
Diffstat (limited to 'src/include/executor/nodeResult.h')
-rw-r--r-- | src/include/executor/nodeResult.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/executor/nodeResult.h b/src/include/executor/nodeResult.h index 87fe93eeb3..b32b5299a9 100644 --- a/src/include/executor/nodeResult.h +++ b/src/include/executor/nodeResult.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/nodeResult.h,v 1.20 2004/12/31 22:03:29 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/executor/nodeResult.h,v 1.21 2006/02/28 04:10:28 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -17,7 +17,7 @@ #include "nodes/execnodes.h" extern int ExecCountSlotsResult(Result *node); -extern ResultState *ExecInitResult(Result *node, EState *estate); +extern ResultState *ExecInitResult(Result *node, EState *estate, int eflags); extern TupleTableSlot *ExecResult(ResultState *node); extern void ExecEndResult(ResultState *node); extern void ExecReScanResult(ResultState *node, ExprContext *exprCtxt); |