diff options
author | Noah Misch <noah@leadboat.com> | 2017-06-16 00:16:11 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2017-06-16 00:16:11 -0700 |
commit | 39ac55918fc31b9bf88185d28ebe7ddc58d01181 (patch) | |
tree | 60a07c903396ec9221c422219599ef985335579d /src/backend/nodes/outfuncs.c | |
parent | c254970ad6092d201443cced570450d5b29d4234 (diff) |
Reconcile nodes/*funcs.c with PostgreSQL 10 work.
The _equalTableFunc() omission of coltypmods has semantic significance,
but I did not track down resulting user-visible bugs, if any. The other
changes are cosmetic only, affecting order. catversion bump due to
readfuncs.c field order change.
Diffstat (limited to 'src/backend/nodes/outfuncs.c')
-rw-r--r-- | src/backend/nodes/outfuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c index 4fd2ca50c02..3a23f0bb164 100644 --- a/src/backend/nodes/outfuncs.c +++ b/src/backend/nodes/outfuncs.c @@ -1018,8 +1018,8 @@ _outTableFunc(StringInfo str, const TableFunc *node) { WRITE_NODE_TYPE("TABLEFUNC"); - WRITE_NODE_FIELD(ns_names); WRITE_NODE_FIELD(ns_uris); + WRITE_NODE_FIELD(ns_names); WRITE_NODE_FIELD(docexpr); WRITE_NODE_FIELD(rowexpr); WRITE_NODE_FIELD(colnames); |