diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-08 20:59:27 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-08 20:59:27 +0000 |
commit | 075cede74858a9a04e97097b1ccd555121516c20 (patch) | |
tree | d5143a60a71fcaa81e2134cea052717c19fec9b4 /src/backend/nodes | |
parent | 4f523a6f92f98e1b10e84b2d5a58b0ac3e2f8c2a (diff) | |
download | postgresql-075cede74858a9a04e97097b1ccd555121516c20.tar.gz postgresql-075cede74858a9a04e97097b1ccd555121516c20.zip |
Add typdefs to pgindent run.
Diffstat (limited to 'src/backend/nodes')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 14 | ||||
-rw-r--r-- | src/backend/nodes/equalfuncs.c | 6 | ||||
-rw-r--r-- | src/backend/nodes/outfuncs.c | 12 |
3 files changed, 16 insertions, 16 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index d710ab711c6..36ed7e86ebd 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.8 1997/09/08 02:23:29 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.9 1997/09/08 20:55:50 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -157,7 +157,7 @@ _copyResult(Result * from) * ---------------- */ static Append * -_copyAppend(Append * from) +_copyAppend(Append *from) { Append *newnode = makeNode(Append); @@ -486,7 +486,7 @@ _copySort(Sort * from) * -------------- */ static Agg * -_copyAgg(Agg * from) +_copyAgg(Agg *from) { Agg *newnode = makeNode(Agg); int i; @@ -870,7 +870,7 @@ _copyFunc(Func * from) * ---------------- */ static Aggreg * -_copyAggreg(Aggreg * from) +_copyAggreg(Aggreg *from) { Aggreg *newnode = makeNode(Aggreg); @@ -890,7 +890,7 @@ _copyAggreg(Aggreg * from) } static Array * -_copyArray(Array * from) +_copyArray(Array *from) { Array *newnode = makeNode(Array); @@ -910,7 +910,7 @@ _copyArray(Array * from) } static ArrayRef * -_copyArrayRef(ArrayRef * from) +_copyArrayRef(ArrayRef *from) { ArrayRef *newnode = makeNode(ArrayRef); @@ -1479,7 +1479,7 @@ _copySortClause(SortClause * from) } static A_Const * -_copyAConst(A_Const * from) +_copyAConst(A_Const *from) { A_Const *newnode = makeNode(A_Const); diff --git a/src/backend/nodes/equalfuncs.c b/src/backend/nodes/equalfuncs.c index 21958ca293e..3500a638ce4 100644 --- a/src/backend/nodes/equalfuncs.c +++ b/src/backend/nodes/equalfuncs.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/equalfuncs.c,v 1.8 1997/09/08 02:23:36 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/equalfuncs.c,v 1.9 1997/09/08 20:55:52 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -138,7 +138,7 @@ _equalVar(Var * a, Var * b) } static bool -_equalArray(Array * a, Array * b) +_equalArray(Array *a, Array *b) { if (a->arrayelemtype != b->arrayelemtype) return (false); @@ -154,7 +154,7 @@ _equalArray(Array * a, Array * b) } static bool -_equalArrayRef(ArrayRef * a, ArrayRef * b) +_equalArrayRef(ArrayRef *a, ArrayRef *b) { if (a->refelemtype != b->refelemtype) return (false); diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c index 30c0ff9a6e4..9b6840ecb6a 100644 --- a/src/backend/nodes/outfuncs.c +++ b/src/backend/nodes/outfuncs.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.8 1997/09/08 02:23:41 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.9 1997/09/08 20:55:56 momjian Exp $ * * NOTES * Every (plan) node in POSTGRES has an associated "out" routine which @@ -186,7 +186,7 @@ _outExistential(StringInfo str, Existential * node) * Append is a subclass of Plan. */ static void -_outAppend(StringInfo str, Append * node) +_outAppend(StringInfo str, Append *node) { char buf[500]; @@ -387,7 +387,7 @@ _outSort(StringInfo str, Sort * node) } static void -_outAgg(StringInfo str, Agg * node) +_outAgg(StringInfo str, Agg *node) { char buf[500]; @@ -646,7 +646,7 @@ _outConst(StringInfo str, Const * node) * Aggreg */ static void -_outAggreg(StringInfo str, Aggreg * node) +_outAggreg(StringInfo str, Aggreg *node) { char buf[500]; @@ -670,7 +670,7 @@ _outAggreg(StringInfo str, Aggreg * node) * Array is a subclass of Expr */ static void -_outArray(StringInfo str, Array * node) +_outArray(StringInfo str, Array *node) { char buf[500]; int i; @@ -707,7 +707,7 @@ _outArray(StringInfo str, Array * node) * ArrayRef is a subclass of Expr */ static void -_outArrayRef(StringInfo str, ArrayRef * node) +_outArrayRef(StringInfo str, ArrayRef *node) { char buf[500]; |