mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-22 22:37:01 +08: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.
28 lines
889 B
C
28 lines
889 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeSeqscan.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeSeqscan.h,v 1.16 2002/12/05 15:50:38 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODESEQSCAN_H
|
|
#define NODESEQSCAN_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern int ExecCountSlotsSeqScan(SeqScan *node);
|
|
extern SeqScanState *ExecInitSeqScan(SeqScan *node, EState *estate);
|
|
extern TupleTableSlot *ExecSeqScan(SeqScanState *node);
|
|
extern void ExecEndSeqScan(SeqScanState *node);
|
|
extern void ExecSeqMarkPos(SeqScanState *node);
|
|
extern void ExecSeqRestrPos(SeqScanState *node);
|
|
extern void ExecSeqReScan(SeqScanState *node, ExprContext *exprCtxt);
|
|
|
|
#endif /* NODESEQSCAN_H */
|