Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
87a3023
)
Mirror struct Aggref field order in _copyAggref().
author
Noah Misch
<noah@leadboat.com>
Tue, 31 May 2016 04:01:03 +0000
(
00:01
-0400)
committer
Noah Misch
<noah@leadboat.com>
Tue, 31 May 2016 04:01:03 +0000
(
00:01
-0400)
This is cosmetic, and no supported release has the affected fields.
src/backend/nodes/copyfuncs.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/nodes/copyfuncs.c
b/src/backend/nodes/copyfuncs.c
index 20e38f09fbe40a1a45a1879702eab674a40b8750..08ed9909773595650d9a30d8d87b46a6f336724c 100644
(file)
--- 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);