From: Noah Misch Date: Tue, 31 May 2016 04:01:03 +0000 (-0400) Subject: Mirror struct Aggref field order in _copyAggref(). X-Git-Tag: REL9_6_BETA2~133 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2195c5afaabd4d794c8bbf1bf10d8e4fe54b6145;p=postgresql Mirror struct Aggref field order in _copyAggref(). This is cosmetic, and no supported release has the affected fields. --- diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index 20e38f09fb..08ed990977 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -1244,8 +1244,8 @@ _copyAggref(const Aggref *from) COPY_NODE_FIELD(aggfilter); COPY_SCALAR_FIELD(aggstar); COPY_SCALAR_FIELD(aggvariadic); - COPY_SCALAR_FIELD(aggpartial); COPY_SCALAR_FIELD(aggcombine); + COPY_SCALAR_FIELD(aggpartial); COPY_SCALAR_FIELD(aggkind); COPY_SCALAR_FIELD(agglevelsup); COPY_LOCATION_FIELD(location);