1996-07-09 02:22:35 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* nodeHash.h--
|
1997-09-07 01:04:48 -04:00
|
|
|
*
|
1996-07-09 02:22:35 -04:00
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
1998-02-25 23:46:47 -05:00
|
|
|
* $Id: nodeHash.h,v 1.9 1998/02/26 04:41:21 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 "executor/hashjoin.h"
|
|
|
|
|
#include "executor/tuptable.h"
|
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
|
#include "nodes/pg_list.h"
|
|
|
|
|
#include "nodes/plannodes.h"
|
|
|
|
|
#include "storage/fd.h"
|
|
|
|
|
#include "utils/syscache.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);
|
1998-02-25 23:46:47 -05:00
|
|
|
extern void
|
|
|
|
|
ExecHashTableInsert(HashJoinTable hashtable, ExprContext *econtext,
|
1997-09-08 17:56:23 -04:00
|
|
|
Var *hashkey, File *batches);
|
1997-09-07 22:41:22 -04:00
|
|
|
extern void ExecHashTableDestroy(HashJoinTable hashtable);
|
1998-02-25 23:46:47 -05:00
|
|
|
extern int
|
|
|
|
|
ExecHashGetBucket(HashJoinTable hashtable, ExprContext *econtext,
|
1997-09-08 17:56:23 -04:00
|
|
|
Var *hashkey);
|
1998-02-25 23:46:47 -05:00
|
|
|
extern HeapTuple
|
|
|
|
|
ExecScanHashBucket(HashJoinState *hjstate, HashBucket bucket,
|
1997-09-08 17:56:23 -04:00
|
|
|
HeapTuple curtuple, List *hjclauses,
|
|
|
|
|
ExprContext *econtext);
|
1997-09-07 22:41:22 -04:00
|
|
|
extern void ExecHashTableReset(HashJoinTable hashtable, int 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
|
|
|
|
1997-09-07 01:04:48 -04:00
|
|
|
#endif /* NODEHASH_H */
|