]> granicus.if.org Git - postgresql/blob - src/include/executor/nodeLimit.h
ab9224e1a35a2fe31b00209e06b53c0ca9cdcd63
[postgresql] / src / include / executor / nodeLimit.h
1 /*-------------------------------------------------------------------------
2  *
3  * nodeLimit.h
4  *
5  *
6  *
7  * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $Id: nodeLimit.h,v 1.4 2001/10/28 06:26:06 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef NODELIMIT_H
15 #define NODELIMIT_H
16
17 #include "nodes/plannodes.h"
18
19 extern TupleTableSlot *ExecLimit(Limit *node);
20 extern bool ExecInitLimit(Limit *node, EState *estate, Plan *parent);
21 extern int      ExecCountSlotsLimit(Limit *node);
22 extern void ExecEndLimit(Limit *node);
23 extern void ExecReScanLimit(Limit *node, ExprContext *exprCtxt, Plan *parent);
24
25 #endif   /* NODELIMIT_H */