diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-08-08 21:42:59 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-08-08 21:42:59 +0000 |
commit | 46785776c42143af8f5433bb580ff13f2a9f65e1 (patch) | |
tree | 0c1f6da64634a202ff20176865b4a9dc69b8ac40 /src/backend/executor/nodeHashjoin.c | |
parent | 0e2b12bd9689ac4fd353f7dba33dd796d0e3a07d (diff) | |
download | postgresql-46785776c42143af8f5433bb580ff13f2a9f65e1.tar.gz postgresql-46785776c42143af8f5433bb580ff13f2a9f65e1.zip |
Another pgindent run with updated typedefs.
Diffstat (limited to 'src/backend/executor/nodeHashjoin.c')
-rw-r--r-- | src/backend/executor/nodeHashjoin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/executor/nodeHashjoin.c b/src/backend/executor/nodeHashjoin.c index 443fea6a50c..454b18e7868 100644 --- a/src/backend/executor/nodeHashjoin.c +++ b/src/backend/executor/nodeHashjoin.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/nodeHashjoin.c,v 1.55 2003/08/04 02:39:59 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/nodeHashjoin.c,v 1.56 2003/08/08 21:41:42 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -22,7 +22,7 @@ #include "utils/memutils.h" -static TupleTableSlot *ExecHashJoinOuterGetTuple(PlanState * node, +static TupleTableSlot *ExecHashJoinOuterGetTuple(PlanState *node, HashJoinState *hjstate); static TupleTableSlot *ExecHashJoinGetSavedTuple(HashJoinState *hjstate, BufFile *file, @@ -499,7 +499,7 @@ ExecEndHashJoin(HashJoinState *node) */ static TupleTableSlot * -ExecHashJoinOuterGetTuple(PlanState * node, HashJoinState *hjstate) +ExecHashJoinOuterGetTuple(PlanState *node, HashJoinState *hjstate) { HashJoinTable hashtable = hjstate->hj_HashTable; int curbatch = hashtable->curbatch; |