diff options
| author | Bruce Momjian | 1998-01-24 22:50:57 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1998-01-24 22:50:57 +0000 |
| commit | f609fa43a812b7a6c8ffa9c788d17834cc8ca179 (patch) | |
| tree | 265e80ab32f4ae05a0724bdf96031484e369422a /src/include/executor/nodeHash.h | |
| parent | fcf01a55aac61d76c39c6709ad8345b6aef4ef89 (diff) | |
Fix prototypes so they don't look like function definitions.
Diffstat (limited to 'src/include/executor/nodeHash.h')
| -rw-r--r-- | src/include/executor/nodeHash.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/include/executor/nodeHash.h b/src/include/executor/nodeHash.h index 424641c25d..1af61dbb31 100644 --- a/src/include/executor/nodeHash.h +++ b/src/include/executor/nodeHash.h @@ -26,15 +26,12 @@ 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); |
