1996-07-09 02:22:35 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
1999-02-13 18:22:53 -05:00
|
|
|
* nodeHashjoin.h
|
2005-03-06 17:15:05 -05:00
|
|
|
* prototypes for nodeHashjoin.c
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
|
|
|
|
*
|
2012-01-01 18:01:58 -05:00
|
|
|
* Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group
|
2000-01-26 00:58:53 -05:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
2010-09-20 16:08:53 -04:00
|
|
|
* src/include/executor/nodeHashjoin.h
|
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
|
|
|
|
2002-12-05 10:50:39 -05:00
|
|
|
#include "nodes/execnodes.h"
|
2005-03-06 17:15:05 -05:00
|
|
|
#include "storage/buffile.h"
|
1996-07-09 02:22:35 -04:00
|
|
|
|
2006-02-27 23:10:28 -05:00
|
|
|
extern HashJoinState *ExecInitHashJoin(HashJoin *node, EState *estate, int eflags);
|
2002-12-05 10:50:39 -05:00
|
|
|
extern TupleTableSlot *ExecHashJoin(HashJoinState *node);
|
|
|
|
|
extern void ExecEndHashJoin(HashJoinState *node);
|
2010-07-12 13:01:06 -04:00
|
|
|
extern void ExecReScanHashJoin(HashJoinState *node);
|
2002-12-05 10:50:39 -05:00
|
|
|
|
2007-06-07 15:19:57 -04:00
|
|
|
extern void ExecHashJoinSaveTuple(MinimalTuple tuple, uint32 hashvalue,
|
|
|
|
|
BufFile **fileptr);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2001-11-05 12:46:40 -05:00
|
|
|
#endif /* NODEHASHJOIN_H */
|