mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-06 09:47:32 +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.
26 lines
780 B
C
26 lines
780 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeResult.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeResult.h,v 1.16 2002/12/05 15:50:38 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODERESULT_H
|
|
#define NODERESULT_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern int ExecCountSlotsResult(Result *node);
|
|
extern ResultState *ExecInitResult(Result *node, EState *estate);
|
|
extern TupleTableSlot *ExecResult(ResultState *node);
|
|
extern void ExecEndResult(ResultState *node);
|
|
extern void ExecReScanResult(ResultState *node, ExprContext *exprCtxt);
|
|
|
|
#endif /* NODERESULT_H */
|