diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-05-25 22:43:53 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-05-25 22:43:53 +0000 |
commit | fcff1cdf4eadbc6dcba4b9a2cd09f38f466ffa31 (patch) | |
tree | 5b4a877bed2a5229075e0e2a37c6f1431599ada6 /src/backend/executor/nodeHashjoin.c | |
parent | 4eadfe875440759bf062b02857ff196ab95d6fbc (diff) | |
download | postgresql-fcff1cdf4eadbc6dcba4b9a2cd09f38f466ffa31.tar.gz postgresql-fcff1cdf4eadbc6dcba4b9a2cd09f38f466ffa31.zip |
Another pgindent run. Sorry folks.
Diffstat (limited to 'src/backend/executor/nodeHashjoin.c')
-rw-r--r-- | src/backend/executor/nodeHashjoin.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/executor/nodeHashjoin.c b/src/backend/executor/nodeHashjoin.c index 49f84294021..e494c620261 100644 --- a/src/backend/executor/nodeHashjoin.c +++ b/src/backend/executor/nodeHashjoin.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/nodeHashjoin.c,v 1.21 1999/05/25 16:08:42 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/nodeHashjoin.c,v 1.22 1999/05/25 22:41:01 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -25,7 +25,7 @@ static TupleTableSlot *ExecHashJoinOuterGetTuple(Plan *node, Plan *parent, HashJoinState *hjstate); static TupleTableSlot *ExecHashJoinGetSavedTuple(HashJoinState *hjstate, - BufFile * file, + BufFile *file, TupleTableSlot *tupleSlot); static int ExecHashJoinGetBatch(int bucketno, HashJoinTable hashtable); static int ExecHashJoinNewBatch(HashJoinState *hjstate); @@ -478,7 +478,7 @@ ExecHashJoinOuterGetTuple(Plan *node, Plan *parent, HashJoinState *hjstate) static TupleTableSlot * ExecHashJoinGetSavedTuple(HashJoinState *hjstate, - BufFile * file, + BufFile *file, TupleTableSlot *tupleSlot) { HeapTupleData htup; @@ -625,7 +625,7 @@ ExecHashJoinGetBatch(int bucketno, HashJoinTable hashtable) void ExecHashJoinSaveTuple(HeapTuple heapTuple, - BufFile * file) + BufFile *file) { size_t written; |