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-25 01:50:21 -04:00
|
|
|
* $Id: nodeLimit.h,v 1.3 2001/10/25 05:49:59 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);
|
|
|
|
|
#endif /* NODELIMIT_H */
|