diff options
Diffstat (limited to 'src/include/executor/nodeLimit.h')
-rw-r--r-- | src/include/executor/nodeLimit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/executor/nodeLimit.h b/src/include/executor/nodeLimit.h index 8722766e596..cecaf663e3e 100644 --- a/src/include/executor/nodeLimit.h +++ b/src/include/executor/nodeLimit.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/nodeLimit.h,v 1.11 2004/12/31 22:03:29 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/executor/nodeLimit.h,v 1.12 2006/02/28 04:10:28 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -17,7 +17,7 @@ #include "nodes/execnodes.h" extern int ExecCountSlotsLimit(Limit *node); -extern LimitState *ExecInitLimit(Limit *node, EState *estate); +extern LimitState *ExecInitLimit(Limit *node, EState *estate, int eflags); extern TupleTableSlot *ExecLimit(LimitState *node); extern void ExecEndLimit(LimitState *node); extern void ExecReScanLimit(LimitState *node, ExprContext *exprCtxt); |