1996-07-09 02:22:35 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
1999-02-13 18:22:53 -05:00
|
|
|
* nodeHash.h
|
1997-09-07 01:04:48 -04:00
|
|
|
*
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
|
|
|
|
*
|
2000-01-26 00:58:53 -05:00
|
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
|
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
2000-04-18 01:43:02 -04:00
|
|
|
* $Id: nodeHash.h,v 1.16 2000/04/18 05:43:00 tgl Exp $
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
1997-09-07 01:04:48 -04:00
|
|
|
#ifndef NODEHASH_H
|
|
|
|
|
#define NODEHASH_H
|
1996-07-09 02:22:35 -04:00
|
|
|
|
1997-11-25 20:26:13 -05:00
|
|
|
#include "nodes/plannodes.h"
|
1998-02-25 23:46:47 -05:00
|
|
|
|
2000-04-18 01:43:02 -04:00
|
|
|
/* NTUP_PER_BUCKET is exported because planner wants to see it */
|
|
|
|
|
#define NTUP_PER_BUCKET 10
|
|
|
|
|
|
1997-09-08 17:56:23 -04:00
|
|
|
extern TupleTableSlot *ExecHash(Hash *node);
|
|
|
|
|
extern bool ExecInitHash(Hash *node, EState *estate, Plan *parent);
|
|
|
|
|
extern int ExecCountSlotsHash(Hash *node);
|
|
|
|
|
extern void ExecEndHash(Hash *node);
|
|
|
|
|
extern HashJoinTable ExecHashTableCreate(Hash *node);
|
1997-09-07 22:41:22 -04:00
|
|
|
extern void ExecHashTableDestroy(HashJoinTable hashtable);
|
1999-05-18 17:33:06 -04:00
|
|
|
extern void ExecHashTableInsert(HashJoinTable hashtable, ExprContext *econtext,
|
1999-05-25 12:15:34 -04:00
|
|
|
Var *hashkey);
|
1998-09-01 00:40:42 -04:00
|
|
|
extern int ExecHashGetBucket(HashJoinTable hashtable, ExprContext *econtext,
|
1999-05-25 12:15:34 -04:00
|
|
|
Var *hashkey);
|
1999-05-18 17:33:06 -04:00
|
|
|
extern HeapTuple ExecScanHashBucket(HashJoinState *hjstate, List *hjclauses,
|
1999-05-25 12:15:34 -04:00
|
|
|
ExprContext *econtext);
|
1999-05-18 17:33:06 -04:00
|
|
|
extern void ExecHashTableReset(HashJoinTable hashtable, long ntuples);
|
1998-02-12 22:46:56 -05:00
|
|
|
extern void ExecReScanHash(Hash *node, ExprContext *exprCtxt, Plan *parent);
|
1996-07-09 02:22:35 -04:00
|
|
|
|
1998-09-01 00:40:42 -04:00
|
|
|
#endif /* NODEHASH_H */
|