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
|
|
|
*
|
|
|
|
|
*
|
2001-01-24 14:43:33 -05:00
|
|
|
* Portions Copyright (c) 1996-2001, 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
|
|
|
*
|
2001-10-25 01:50:21 -04:00
|
|
|
* $Id: nodeHash.h,v 1.21 2001/10/25 05:49:59 momjian 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
|
|
|
|
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);
|
2000-07-11 22:37:39 -04:00
|
|
|
extern void ExecHashTableInsert(HashJoinTable hashtable,
|
2001-03-21 23:01:46 -05:00
|
|
|
ExprContext *econtext,
|
|
|
|
|
Node *hashkey);
|
2000-07-11 22:37:39 -04:00
|
|
|
extern int ExecHashGetBucket(HashJoinTable hashtable,
|
2001-03-21 23:01:46 -05:00
|
|
|
ExprContext *econtext,
|
|
|
|
|
Node *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);
|
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);
|
1998-09-01 00:40:42 -04:00
|
|
|
#endif /* NODEHASH_H */
|