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
|
|
|
*
|
2005-03-06 17:15:05 -05:00
|
|
|
* $PostgreSQL: pgsql/src/include/executor/nodeHash.h,v 1.36 2005/03/06 22:15:05 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
|
|
|
|
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,
|
2005-03-06 17:15:05 -05:00
|
|
|
HeapTuple tuple,
|
|
|
|
|
uint32 hashvalue);
|
|
|
|
|
extern uint32 ExecHashGetHashValue(HashJoinTable hashtable,
|
|
|
|
|
ExprContext *econtext,
|
|
|
|
|
List *hashkeys);
|
|
|
|
|
extern void ExecHashGetBucketAndBatch(HashJoinTable hashtable,
|
|
|
|
|
uint32 hashvalue,
|
|
|
|
|
int *bucketno,
|
|
|
|
|
int *batchno);
|
|
|
|
|
extern HeapTuple ExecScanHashBucket(HashJoinState *hjstate,
|
|
|
|
|
ExprContext *econtext);
|
|
|
|
|
extern void ExecHashTableReset(HashJoinTable hashtable);
|
2001-06-10 20:17:08 -04:00
|
|
|
extern void ExecChooseHashTableSize(double ntuples, int tupwidth,
|
2005-03-06 17:15:05 -05:00
|
|
|
int *numbuckets,
|
2001-10-25 01:50:21 -04:00
|
|
|
int *numbatches);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2001-11-05 12:46:40 -05:00
|
|
|
#endif /* NODEHASH_H */
|