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.
28 lines
884 B
C
28 lines
884 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* nodeHashjoin.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: nodeHashjoin.h,v 1.24 2002/12/05 15:50:37 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef NODEHASHJOIN_H
|
|
#define NODEHASHJOIN_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern int ExecCountSlotsHashJoin(HashJoin *node);
|
|
extern HashJoinState *ExecInitHashJoin(HashJoin *node, EState *estate);
|
|
extern TupleTableSlot *ExecHashJoin(HashJoinState *node);
|
|
extern void ExecEndHashJoin(HashJoinState *node);
|
|
extern void ExecReScanHashJoin(HashJoinState *node, ExprContext *exprCtxt);
|
|
|
|
extern void ExecHashJoinSaveTuple(HeapTuple heapTuple, BufFile *file);
|
|
|
|
#endif /* NODEHASHJOIN_H */
|