]> granicus.if.org Git - postgresql/commit
Wrap appendrel member outputs in PlaceHolderVars in additional cases.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 9 Nov 2011 02:14:21 +0000 (21:14 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 9 Nov 2011 02:14:21 +0000 (21:14 -0500)
commit57664ed25e5dea117158a2e663c29e60b3546e1c
treefa7d1fb4b6fae1fa81452ac7bb1f58042b26c9c9
parent3b8161723c645853021b57330dd2ea0484ec6131
Wrap appendrel member outputs in PlaceHolderVars in additional cases.

Add PlaceHolderVar wrappers as needed to make UNION ALL sub-select output
expressions appear non-constant and distinct from each other.  This makes
the world safe for add_child_rel_equivalences to do what it does.  Before,
it was possible for that function to add identical expressions to different
EquivalenceClasses, which logically should imply merging such ECs, which
would be wrong; or to improperly add a constant to an EquivalenceClass,
drastically changing its behavior.  Per report from Teodor Sigaev.

The only currently known consequence of this bug is "MergeAppend child's
targetlist doesn't match MergeAppend" planner failures in 9.1 and later.
I am suspicious that there may be other failure modes that could affect
older release branches; but in the absence of any hard evidence, I'll
refrain from back-patching further than 9.1.
src/backend/optimizer/plan/planmain.c
src/backend/optimizer/prep/prepjointree.c
src/backend/optimizer/util/placeholder.c
src/include/optimizer/placeholder.h
src/test/regress/expected/inherit.out
src/test/regress/sql/inherit.sql