2000-10-26 17:38:24 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeLimit.h
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
2001-01-24 14:43:33 -05:00
|
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
2000-10-26 17:38:24 -04:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
2001-10-28 01:26:15 -05:00
|
|
|
* $Id: nodeLimit.h,v 1.4 2001/10/28 06:26:06 momjian Exp $
|
2000-10-26 17:38:24 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#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);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2000-10-26 17:38:24 -04:00
|
|
|
#endif /* NODELIMIT_H */
|