diff options
author | Robert Haas <rhaas@postgresql.org> | 2017-06-14 16:19:46 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2017-06-14 16:19:46 -0400 |
commit | f32d57fd7088a558dadbe21b9859b09d2f877c19 (patch) | |
tree | e90add07782367d128db9c9f5d0c7319783bc14d /src/backend/nodes/copyfuncs.c | |
parent | 6c2003f8a1bbc7c192a2e83ec51581c018aa162f (diff) | |
download | postgresql-f32d57fd7088a558dadbe21b9859b09d2f877c19.tar.gz postgresql-f32d57fd7088a558dadbe21b9859b09d2f877c19.zip |
Fix problems related to RangeTblEntry members enrname and enrtuples.
Commit 18ce3a4ab22d2984f8540ab480979c851dae5338 failed to update
the comments in parsenodes.h for the new members, and made only
incomplete updates to src/backend/nodes
Thomas Munro, per a report from Noah Misch.
Discussion: http://postgr.es/m/20170611062525.GA1628882@rfd.leadboat.com
Diffstat (limited to 'src/backend/nodes/copyfuncs.c')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index 36bf1dc92bb..02451c2a713 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -2303,10 +2303,11 @@ _copyRangeTblEntry(const RangeTblEntry *from) COPY_STRING_FIELD(ctename); COPY_SCALAR_FIELD(ctelevelsup); COPY_SCALAR_FIELD(self_reference); - COPY_STRING_FIELD(enrname); COPY_NODE_FIELD(coltypes); COPY_NODE_FIELD(coltypmods); COPY_NODE_FIELD(colcollations); + COPY_STRING_FIELD(enrname); + COPY_SCALAR_FIELD(enrtuples); COPY_NODE_FIELD(alias); COPY_NODE_FIELD(eref); COPY_SCALAR_FIELD(lateral); |