diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-08 21:56:23 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-08 21:56:23 +0000 |
commit | 59f6a57e59fe8353f9edaa3703516ea67e06672b (patch) | |
tree | 1b083fb66cf0be3890480a1ed5fb077dd7293790 /src/backend/executor/nodeHashjoin.c | |
parent | 075cede74858a9a04e97097b1ccd555121516c20 (diff) | |
download | postgresql-59f6a57e59fe8353f9edaa3703516ea67e06672b.tar.gz postgresql-59f6a57e59fe8353f9edaa3703516ea67e06672b.zip |
Used modified version of indent that understands over 100 typedefs.
Diffstat (limited to 'src/backend/executor/nodeHashjoin.c')
-rw-r--r-- | src/backend/executor/nodeHashjoin.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/backend/executor/nodeHashjoin.c b/src/backend/executor/nodeHashjoin.c index b0c6eec3c02..0ef0c28ee14 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.7 1997/09/08 02:22:43 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/nodeHashjoin.c,v 1.8 1997/09/08 21:43:12 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -33,17 +33,17 @@ #include "utils/palloc.h" static TupleTableSlot * - ExecHashJoinOuterGetTuple(Plan * node, Plan * parent, HashJoinState * hjstate); + ExecHashJoinOuterGetTuple(Plan *node, Plan *parent, HashJoinState *hjstate); static TupleTableSlot * -ExecHashJoinGetSavedTuple(HashJoinState * hjstate, char *buffer, - File file, TupleTableSlot * tupleSlot, int *block, char **position); +ExecHashJoinGetSavedTuple(HashJoinState *hjstate, char *buffer, + File file, TupleTableSlot *tupleSlot, int *block, char **position); static int ExecHashJoinGetBatch(int bucketno, HashJoinTable hashtable, int nbatch); -static int ExecHashJoinNewBatch(HashJoinState * hjstate); +static int ExecHashJoinNewBatch(HashJoinState *hjstate); @@ -57,7 +57,7 @@ static int ExecHashJoinNewBatch(HashJoinState * hjstate); * ---------------------------------------------------------------- */ TupleTableSlot * /* return: a tuple or NULL */ -ExecHashJoin(HashJoin * node) +ExecHashJoin(HashJoin *node) { HashJoinState *hjstate; EState *estate; @@ -392,7 +392,7 @@ ExecHashJoin(HashJoin * node) * ---------------------------------------------------------------- */ bool /* return: initialization status */ -ExecInitHashJoin(HashJoin * node, EState * estate, Plan * parent) +ExecInitHashJoin(HashJoin *node, EState *estate, Plan *parent) { HashJoinState *hjstate; Plan *outerNode; @@ -497,7 +497,7 @@ ExecInitHashJoin(HashJoin * node, EState * estate, Plan * parent) } int -ExecCountSlotsHashJoin(HashJoin * node) +ExecCountSlotsHashJoin(HashJoin *node) { return ExecCountSlotsNode(outerPlan(node)) + ExecCountSlotsNode(innerPlan(node)) + @@ -511,7 +511,7 @@ ExecCountSlotsHashJoin(HashJoin * node) * ---------------------------------------------------------------- */ void -ExecEndHashJoin(HashJoin * node) +ExecEndHashJoin(HashJoin *node) { HashJoinState *hjstate; @@ -569,7 +569,7 @@ ExecEndHashJoin(HashJoin * node) */ static TupleTableSlot * -ExecHashJoinOuterGetTuple(Plan * node, Plan * parent, HashJoinState * hjstate) +ExecHashJoinOuterGetTuple(Plan *node, Plan *parent, HashJoinState *hjstate) { TupleTableSlot *slot; HashJoinTable hashtable; @@ -619,10 +619,10 @@ ExecHashJoinOuterGetTuple(Plan * node, Plan * parent, HashJoinState * hjstate) */ static TupleTableSlot * -ExecHashJoinGetSavedTuple(HashJoinState * hjstate, +ExecHashJoinGetSavedTuple(HashJoinState *hjstate, char *buffer, File file, - TupleTableSlot * tupleSlot, + TupleTableSlot *tupleSlot, int *block, /* return parameter */ char **position) /* return parameter */ { @@ -664,7 +664,7 @@ ExecHashJoinGetSavedTuple(HashJoinState * hjstate, * ---------------------------------------------------------------- */ static int -ExecHashJoinNewBatch(HashJoinState * hjstate) +ExecHashJoinNewBatch(HashJoinState *hjstate) { File *innerBatches; File *outerBatches; |