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
988 B
C
27 lines
988 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeFunctionscan.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeFunctionscan.h,v 1.3 2002/12/05 15:50:37 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEFUNCTIONSCAN_H
|
|
#define NODEFUNCTIONSCAN_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern int ExecCountSlotsFunctionScan(FunctionScan *node);
|
|
extern FunctionScanState *ExecInitFunctionScan(FunctionScan *node, EState *estate);
|
|
extern TupleTableSlot *ExecFunctionScan(FunctionScanState *node);
|
|
extern void ExecEndFunctionScan(FunctionScanState *node);
|
|
extern void ExecFunctionMarkPos(FunctionScanState *node);
|
|
extern void ExecFunctionRestrPos(FunctionScanState *node);
|
|
extern void ExecFunctionReScan(FunctionScanState *node, ExprContext *exprCtxt);
|
|
|
|
#endif /* NODEFUNCTIONSCAN_H */
|