mirror of
https://github.com/postgres/postgres.git
synced 2026-02-03 20:40:14 -05:00
to plan nodes, not vice-versa. All executor state nodes now inherit from struct PlanState. Copying of plan trees has been simplified by not storing a list of SubPlans in Plan nodes (eliminating duplicate links). The executor still needs such a list, but it can build it during ExecutorStart since it has to scan the plan tree anyway. No initdb forced since no stored-on-disk structures changed, but you will need a full recompile because of node-numbering changes.
25 lines
763 B
C
25 lines
763 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* 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.7 2002/12/05 15:50:38 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODELIMIT_H
|
|
#define NODELIMIT_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern int ExecCountSlotsLimit(Limit *node);
|
|
extern LimitState *ExecInitLimit(Limit *node, EState *estate);
|
|
extern TupleTableSlot *ExecLimit(LimitState *node);
|
|
extern void ExecEndLimit(LimitState *node);
|
|
extern void ExecReScanLimit(LimitState *node, ExprContext *exprCtxt);
|
|
|
|
#endif /* NODELIMIT_H */
|