diff options
Diffstat (limited to 'src/include/executor/nodeLimit.h')
-rw-r--r-- | src/include/executor/nodeLimit.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/include/executor/nodeLimit.h b/src/include/executor/nodeLimit.h deleted file mode 100644 index 16fa6072bee..00000000000 --- a/src/include/executor/nodeLimit.h +++ /dev/null @@ -1,25 +0,0 @@ -/*------------------------------------------------------------------------- - * - * nodeLimit.h - * - * - * - * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group - * Portions Copyright (c) 1994, Regents of the University of California - * - * $Id: nodeLimit.h,v 1.6 2002/06/20 20:29:49 momjian Exp $ - * - *------------------------------------------------------------------------- - */ -#ifndef NODELIMIT_H -#define NODELIMIT_H - -#include "nodes/plannodes.h" - -extern TupleTableSlot *ExecLimit(Limit *node); -extern bool ExecInitLimit(Limit *node, EState *estate, Plan *parent); -extern int ExecCountSlotsLimit(Limit *node); -extern void ExecEndLimit(Limit *node); -extern void ExecReScanLimit(Limit *node, ExprContext *exprCtxt, Plan *parent); - -#endif /* NODELIMIT_H */ |