mirror of
https://github.com/postgres/postgres.git
synced 2026-01-13 12:22:55 +03: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.
37 lines
1.1 KiB
C
37 lines
1.1 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeGroup.h
|
|
* prototypes for nodeGroup.c
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeGroup.h,v 1.23 2002/12/05 15:50:37 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEGROUP_H
|
|
#define NODEGROUP_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern int ExecCountSlotsGroup(Group *node);
|
|
extern GroupState *ExecInitGroup(Group *node, EState *estate);
|
|
extern TupleTableSlot *ExecGroup(GroupState *node);
|
|
extern void ExecEndGroup(GroupState *node);
|
|
extern void ExecReScanGroup(GroupState *node, ExprContext *exprCtxt);
|
|
|
|
extern bool execTuplesMatch(HeapTuple tuple1,
|
|
HeapTuple tuple2,
|
|
TupleDesc tupdesc,
|
|
int numCols,
|
|
AttrNumber *matchColIdx,
|
|
FmgrInfo *eqfunctions,
|
|
MemoryContext evalContext);
|
|
extern FmgrInfo *execTuplesMatchPrepare(TupleDesc tupdesc,
|
|
int numCols,
|
|
AttrNumber *matchColIdx);
|
|
|
|
#endif /* NODEGROUP_H */
|