1996-07-09 02:22:35 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeHashjoin.h--
|
1997-09-07 01:04:48 -04:00
|
|
|
*
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
1997-09-07 22:41:22 -04:00
|
|
|
* $Id: nodeHashjoin.h,v 1.4 1997/09/08 02:36:25 momjian Exp $
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
1997-09-07 01:04:48 -04:00
|
|
|
#ifndef NODEHASHJOIN_H
|
|
|
|
|
#define NODEHASHJOIN_H
|
1996-07-09 02:22:35 -04:00
|
|
|
|
1997-09-07 01:04:48 -04:00
|
|
|
extern TupleTableSlot *ExecHashJoin(HashJoin * node);
|
1996-07-09 02:22:35 -04:00
|
|
|
|
1997-09-07 22:41:22 -04:00
|
|
|
extern bool ExecInitHashJoin(HashJoin * node, EState * estate, Plan * parent);
|
1996-07-09 02:22:35 -04:00
|
|
|
|
1997-09-07 22:41:22 -04:00
|
|
|
extern int ExecCountSlotsHashJoin(HashJoin * node);
|
1996-07-09 02:22:35 -04:00
|
|
|
|
1997-09-07 22:41:22 -04:00
|
|
|
extern void ExecEndHashJoin(HashJoin * node);
|
1996-07-09 02:22:35 -04:00
|
|
|
|
1997-09-07 22:41:22 -04:00
|
|
|
extern char *
|
1997-09-07 01:04:48 -04:00
|
|
|
ExecHashJoinSaveTuple(HeapTuple heapTuple, char *buffer,
|
|
|
|
|
File file, char *position);
|
1996-07-09 02:22:35 -04:00
|
|
|
|
|
|
|
|
|
1997-09-07 01:04:48 -04:00
|
|
|
#endif /* NODEHASHJOIN_H */
|