1996-07-09 02:22:35 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
1999-02-13 18:22:53 -05:00
|
|
|
* nodeHash.h
|
2003-01-10 18:54:24 -05:00
|
|
|
* prototypes for nodeHash.c
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
|
|
|
|
*
|
2004-12-31 17:04:05 -05:00
|
|
|
* Portions Copyright (c) 1996-2005, 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
|
|
|
*
|
2004-12-31 17:04:05 -05:00
|
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeHash.h,v 1.35 2004/12/31 22:03:29 pgsql 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
|
|
|
|
2002-12-05 10:50:39 -05:00
|
|
|
#include "nodes/execnodes.h"
|
1998-02-25 23:46:47 -05:00
|
|
|
|
1997-09-08 17:56:23 -04:00
|
|
|
extern int ExecCountSlotsHash(Hash *node);
|
2002-12-05 10:50:39 -05:00
|
|
|
extern HashState *ExecInitHash(Hash *node, EState *estate);
|
|
|
|
|
extern TupleTableSlot *ExecHash(HashState *node);
|
|
|
|
|
extern void ExecEndHash(HashState *node);
|
|
|
|
|
extern void ExecReScanHash(HashState *node, ExprContext *exprCtxt);
|
|
|
|
|
|
2003-06-22 18:04:55 -04:00
|
|
|
extern HashJoinTable ExecHashTableCreate(Hash *node, List *hashOperators);
|
1997-09-07 22:41:22 -04:00
|
|
|
extern void ExecHashTableDestroy(HashJoinTable hashtable);
|
2000-07-11 22:37:39 -04:00
|
|
|
extern void ExecHashTableInsert(HashJoinTable hashtable,
|
2001-03-21 23:01:46 -05:00
|
|
|
ExprContext *econtext,
|
2002-11-29 19:08:22 -05:00
|
|
|
List *hashkeys);
|
2000-07-11 22:37:39 -04:00
|
|
|
extern int ExecHashGetBucket(HashJoinTable hashtable,
|
2001-03-21 23:01:46 -05:00
|
|
|
ExprContext *econtext,
|
2002-11-29 19:08:22 -05:00
|
|
|
List *hashkeys);
|
2003-08-03 20:43:34 -04:00
|
|
|
extern int ExecHashGetBatch(int bucketno, HashJoinTable hashtable);
|
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);
|
2001-06-10 20:17:08 -04:00
|
|
|
extern void ExecChooseHashTableSize(double ntuples, int tupwidth,
|
2001-10-25 01:50:21 -04:00
|
|
|
int *virtualbuckets,
|
|
|
|
|
int *physicalbuckets,
|
|
|
|
|
int *numbatches);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2001-11-05 12:46:40 -05:00
|
|
|
#endif /* NODEHASH_H */
|