]> granicus.if.org Git - postgresql/commit
Allow record_in() and record_recv() to work for transient record types.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 21 Aug 2015 15:19:33 +0000 (11:19 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 21 Aug 2015 15:19:33 +0000 (11:19 -0400)
commit09b3d27256d26e258c7802cfd8fea06d81b0a62c
tree67b4a8a18b77b84077ff49d0243ff745b3548142
parent3c99788797e8269ac19c7c8e3fb99dd9613646ea
Allow record_in() and record_recv() to work for transient record types.

If we have the typmod that identifies a registered record type, there's no
reason that record_in() should refuse to perform input conversion for it.
Now, in direct SQL usage, record_in() will always be passed typmod = -1
with type OID RECORDOID, because no typmodin exists for type RECORD, so the
case can't arise.  However, some InputFunctionCall users such as PLs may be
able to supply the right typmod, so we should allow this to support them.

Note: the previous coding and comment here predate commit 59c016aa9f490b53.
There has been no case since 8.1 in which the passed type OID wouldn't be
valid; and if it weren't, this error message wouldn't be apropos anyway.
Better to let lookup_rowtype_tupdesc complain about it.

Back-patch to 9.1, as this is necessary for my upcoming plpython fix.
I'm committing it separately just to make it a bit more visible in the
commit history.
src/backend/utils/adt/rowtypes.c