diff options
| author | Bruce Momjian | 1998-02-26 04:46:47 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1998-02-26 04:46:47 +0000 |
| commit | 4d7d954612f2a78763b77edf5d1b54134fed1b9c (patch) | |
| tree | 06bb36faf43e79684e3ebd9669fbbdeb7cc02a40 /src/include/executor/nodeHash.h | |
| parent | 8cc3525508742ec02525616f4b18b4190e200993 (diff) | |
pgindent run before 6.3 release, with Thomas' requested changes.
Diffstat (limited to 'src/include/executor/nodeHash.h')
| -rw-r--r-- | src/include/executor/nodeHash.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/include/executor/nodeHash.h b/src/include/executor/nodeHash.h index 6c16ecf411..00e8bb6014 100644 --- a/src/include/executor/nodeHash.h +++ b/src/include/executor/nodeHash.h @@ -20,18 +20,21 @@ #include "nodes/plannodes.h" #include "storage/fd.h" #include "utils/syscache.h" - + 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); -extern void ExecHashTableInsert(HashJoinTable hashtable, ExprContext *econtext, +extern void +ExecHashTableInsert(HashJoinTable hashtable, ExprContext *econtext, Var *hashkey, File *batches); extern void ExecHashTableDestroy(HashJoinTable hashtable); -extern int ExecHashGetBucket(HashJoinTable hashtable, ExprContext *econtext, +extern int +ExecHashGetBucket(HashJoinTable hashtable, ExprContext *econtext, Var *hashkey); -extern HeapTuple ExecScanHashBucket(HashJoinState *hjstate, HashBucket bucket, +extern HeapTuple +ExecScanHashBucket(HashJoinState *hjstate, HashBucket bucket, HeapTuple curtuple, List *hjclauses, ExprContext *econtext); extern void ExecHashTableReset(HashJoinTable hashtable, int ntuples); |
