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/execProcnode.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/execProcnode.c')
-rw-r--r-- | src/backend/executor/execProcnode.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/executor/execProcnode.c b/src/backend/executor/execProcnode.c index 7e8cce52c70..8671e8e1b07 100644 --- a/src/backend/executor/execProcnode.c +++ b/src/backend/executor/execProcnode.c @@ -11,7 +11,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.4 1997/09/08 02:22:30 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.5 1997/09/08 21:42:59 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -103,7 +103,7 @@ * ------------------------------------------------------------------------ */ bool -ExecInitNode(Plan * node, EState * estate, Plan * parent) +ExecInitNode(Plan *node, EState *estate, Plan *parent) { bool result; @@ -207,7 +207,7 @@ ExecInitNode(Plan * node, EState * estate, Plan * parent) * ---------------------------------------------------------------- */ TupleTableSlot * -ExecProcNode(Plan * node, Plan * parent) +ExecProcNode(Plan *node, Plan *parent) { TupleTableSlot *result; @@ -302,7 +302,7 @@ ExecProcNode(Plan * node, Plan * parent) } int -ExecCountSlotsNode(Plan * node) +ExecCountSlotsNode(Plan *node) { if (node == (Plan *) NULL) return 0; @@ -387,7 +387,7 @@ ExecCountSlotsNode(Plan * node) * ---------------------------------------------------------------- */ void -ExecEndNode(Plan * node, Plan * parent) +ExecEndNode(Plan *node, Plan *parent) { /* ---------------- * do nothing when we get to the end |