postgresql/src/include/executor/nodeHashjoin.h

28 lines
923 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* nodeHashjoin.h
*
*
*
2004-08-29 00:13:13 -04:00
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
2004-08-29 00:13:13 -04:00
* $PostgreSQL: pgsql/src/include/executor/nodeHashjoin.h,v 1.27 2004/08/29 04:13:06 momjian 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);
1999-05-25 18:43:53 -04:00
extern void ExecHashJoinSaveTuple(HeapTuple heapTuple, BufFile *file);
#endif /* NODEHASHJOIN_H */