]> granicus.if.org Git - postgresql/commit
Ensure that whole-row Vars produce nonempty column names.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 10 Nov 2014 20:21:26 +0000 (15:21 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 10 Nov 2014 20:21:26 +0000 (15:21 -0500)
commit19ccaf9d4685909257b9f0472916026b8c7eff0a
treeede797607c4c35add2813290b10b8d2b7ed531b9
parent0bb3185954858264aac0e25bdf0c4f14df4dbfee
Ensure that whole-row Vars produce nonempty column names.

At one time it wasn't terribly important what column names were associated
with the fields of a composite Datum, but since the introduction of
operations like row_to_json(), it's important that looking up the rowtype
ID embedded in the Datum returns the column names that users would expect.
However, that doesn't work terribly well: you could get the column names
of the underlying table, or column aliases from any level of the query,
depending on minor details of the plan tree.  You could even get totally
empty field names, which is disastrous for cases like row_to_json().

It seems unwise to change this behavior too much in stable branches,
however, since users might not have noticed that they weren't getting
the least-unintuitive choice of field names.  Therefore, in the back
branches, only change the results when the child plan has returned an
actually-empty field name.  (We assume that can't happen with a named
rowtype, so this also dodges the issue of possibly producing RECORD-typed
output from a Var with a named composite result type.)  As in the sister
patch for HEAD, we can get a better name to use from the Var's
corresponding RTE.  There is no need to touch the RowExpr code since it
was already using a copy of the RTE's alias list for RECORD cases.

Back-patch as far as 9.2.  Before that we did not have row_to_json()
so there were no core functions potentially affected by bogus field
names.  While 9.1 and earlier do have contrib's hstore(record) which
is also affected, those versions don't seem to produce empty field names
(at least not in the known problem cases), so we'll leave them alone.
src/backend/executor/execQual.c
src/backend/executor/execTuples.c
src/include/executor/executor.h
src/include/nodes/execnodes.h
src/test/regress/expected/rowtypes.out
src/test/regress/sql/rowtypes.sql