postgresql/src/include/executor/nodeHashjoin.h

28 lines
898 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* nodeHashjoin.h
*
*
*
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: nodeHashjoin.h,v 1.17 2000/01/26 05:58:05 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef NODEHASHJOIN_H
#define NODEHASHJOIN_H
1997-11-25 20:14:33 -05:00
#include "nodes/plannodes.h"
#include "storage/buffile.h"
1997-11-25 20:14:33 -05: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-25 18:43:53 -04:00
extern void ExecHashJoinSaveTuple(HeapTuple heapTuple, BufFile *file);
1998-02-12 22:46:56 -05:00
extern void ExecReScanHashJoin(HashJoin *node, ExprContext *exprCtxt, Plan *parent);
#endif /* NODEHASHJOIN_H */