mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-06 11:27:37 +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
921 B
C
28 lines
921 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeMaterial.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeMaterial.h,v 1.19 2002/12/05 15:50:38 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEMATERIAL_H
|
|
#define NODEMATERIAL_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern int ExecCountSlotsMaterial(Material *node);
|
|
extern MaterialState *ExecInitMaterial(Material *node, EState *estate);
|
|
extern TupleTableSlot *ExecMaterial(MaterialState *node);
|
|
extern void ExecEndMaterial(MaterialState *node);
|
|
extern void ExecMaterialMarkPos(MaterialState *node);
|
|
extern void ExecMaterialRestrPos(MaterialState *node);
|
|
extern void ExecMaterialReScan(MaterialState *node, ExprContext *exprCtxt);
|
|
|
|
#endif /* NODEMATERIAL_H */
|