Fix multiple assignments to a column of a domain type.
authorTom Lane
Tue, 11 Jul 2017 20:48:59 +0000 (16:48 -0400)
committerTom Lane
Tue, 11 Jul 2017 20:48:59 +0000 (16:48 -0400)
commit56076b88dae090ec63c19c516d300759c3397c05
treed2aab6d225306b00f11e314128854b618a0819eb
parentafd1415a4426bb9962d8dff605f11df415b58fdc
Fix multiple assignments to a column of a domain type.

We allow INSERT and UPDATE commands to assign to the same column more than
once, as long as the assignments are to subfields or elements rather than
the whole column.  However, this failed when the target column was a domain
over array rather than plain array.  Fix by teaching process_matched_tle()
to look through CoerceToDomain nodes, and add relevant test cases.

Also add a group of test cases exercising domains over array of composite.
It's doubtless accidental that CREATE DOMAIN allows this case while not
allowing straight domain over composite; but it does, so we'd better make
sure we don't break it.  (I could not find any documentation mentioning
either side of that, so no doc changes.)

It's been like this for a long time, so back-patch to all supported
branches.

Discussion: https://postgr.es/m/4206.1499798337@sss.pgh.pa.us
src/backend/rewrite/rewriteHandler.c
src/test/regress/expected/domain.out
src/test/regress/sql/domain.sql