postgresql/src/include/executor/nodeHashjoin.h

27 lines
890 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* nodeHashjoin.h
*
*
*
2002-06-20 22:29:54 +02:00
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
2002-06-20 22:29:54 +02:00
* $Id: nodeHashjoin.h,v 1.23 2002/06/20 20:29:49 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef NODEHASHJOIN_H
#define NODEHASHJOIN_H
1997-11-26 02:14:33 +01:00
#include "nodes/plannodes.h"
1997-11-26 02:14:33 +01:00
extern TupleTableSlot *ExecHashJoin(HashJoin *node);
extern bool ExecInitHashJoin(HashJoin *node, EState *estate, Plan *parent);
extern int ExecCountSlotsHashJoin(HashJoin *node);
extern void ExecEndHashJoin(HashJoin *node);
1999-05-26 00:43:53 +02:00
extern void ExecHashJoinSaveTuple(HeapTuple heapTuple, BufFile *file);
1998-02-13 04:46:56 +01:00
extern void ExecReScanHashJoin(HashJoin *node, ExprContext *exprCtxt, Plan *parent);
#endif /* NODEHASHJOIN_H */