mirror of
https://github.com/postgres/postgres.git
synced 2025-08-27 07:42:10 +03:00
Re-implement LIMIT/OFFSET as a plan node type, instead of a hack in
ExecutorRun. This allows LIMIT to work in a view. Also, LIMIT in a cursor declaration will behave in a reasonable fashion, whereas before it was overridden by the FETCH count.
This commit is contained in:
25
src/include/executor/nodeLimit.h
Normal file
25
src/include/executor/nodeLimit.h
Normal file
@@ -0,0 +1,25 @@
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* nodeLimit.h
|
||||
*
|
||||
*
|
||||
*
|
||||
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: nodeLimit.h,v 1.1 2000/10/26 21:38:03 tgl 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 */
|
Reference in New Issue
Block a user