diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-04-06 11:34:02 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-04-06 11:34:02 -0400 |
commit | de94e2af184e25576b13cbda8cf825118835d1cd (patch) | |
tree | d230afdbb5a4d1f79778107020f4bd2992a4bc71 /src/backend/nodes | |
parent | d25379eb23383f1d2f969e65e0332b47c19aea94 (diff) | |
download | postgresql-de94e2af184e25576b13cbda8cf825118835d1cd.tar.gz |
Run pgindent on a batch of (mostly-planner-related) source files.
Getting annoyed at the amount of unrelated chatter I get from pgindent'ing
Rowley's unique-joins patch. Re-indent all the files it touches.
Diffstat (limited to 'src/backend/nodes')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 2 | ||||
-rw-r--r-- | src/backend/nodes/equalfuncs.c | 2 | ||||
-rw-r--r-- | src/backend/nodes/outfuncs.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index 1e123d89cb..a21928bebe 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -4203,7 +4203,7 @@ _copyList(const List *from) static ExtensibleNode * _copyExtensibleNode(const ExtensibleNode *from) { - ExtensibleNode *newnode; + ExtensibleNode *newnode; const ExtensibleNodeMethods *methods; methods = GetExtensibleNodeMethods(from->extnodename, false); diff --git a/src/backend/nodes/equalfuncs.c b/src/backend/nodes/equalfuncs.c index 6c0509602c..3c6c5679b1 100644 --- a/src/backend/nodes/equalfuncs.c +++ b/src/backend/nodes/equalfuncs.c @@ -879,7 +879,7 @@ _equalPlaceHolderInfo(const PlaceHolderInfo *a, const PlaceHolderInfo *b) static bool _equalExtensibleNode(const ExtensibleNode *a, const ExtensibleNode *b) { - const ExtensibleNodeMethods *methods; + const ExtensibleNodeMethods *methods; COMPARE_STRING_FIELD(extnodename); diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c index bfd12ac291..e39c374f48 100644 --- a/src/backend/nodes/outfuncs.c +++ b/src/backend/nodes/outfuncs.c @@ -2332,7 +2332,7 @@ _outPlannerParamItem(StringInfo str, const PlannerParamItem *node) static void _outExtensibleNode(StringInfo str, const ExtensibleNode *node) { - const ExtensibleNodeMethods *methods; + const ExtensibleNodeMethods *methods; methods = GetExtensibleNodeMethods(node->extnodename, false); |