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/readfuncs.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/readfuncs.c')
-rw-r--r-- | src/backend/nodes/readfuncs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/nodes/readfuncs.c b/src/backend/nodes/readfuncs.c index 81ddfc32712..039910e1f70 100644 --- a/src/backend/nodes/readfuncs.c +++ b/src/backend/nodes/readfuncs.c @@ -1358,6 +1358,7 @@ _readRangeTblEntry(void) break; case RTE_NAMEDTUPLESTORE: READ_STRING_FIELD(enrname); + READ_FLOAT_FIELD(enrtuples); READ_OID_FIELD(relid); READ_NODE_FIELD(coltypes); READ_NODE_FIELD(coltypmods); |