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.
27 lines
889 B
C
27 lines
889 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeTidscan.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeTidscan.h,v 1.11 2002/12/05 15:50:38 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODETIDSCAN_H
|
|
#define NODETIDSCAN_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern int ExecCountSlotsTidScan(TidScan *node);
|
|
extern TidScanState *ExecInitTidScan(TidScan *node, EState *estate);
|
|
extern TupleTableSlot *ExecTidScan(TidScanState *node);
|
|
extern void ExecEndTidScan(TidScanState *node);
|
|
extern void ExecTidMarkPos(TidScanState *node);
|
|
extern void ExecTidRestrPos(TidScanState *node);
|
|
extern void ExecTidReScan(TidScanState *node, ExprContext *exprCtxt);
|
|
|
|
#endif /* NODETIDSCAN_H */
|