]> granicus.if.org Git - postgresql/commit
Avoid unnecessary single-child Append nodes.
authorRobert Haas <rhaas@postgresql.org>
Tue, 15 Aug 2017 13:16:33 +0000 (09:16 -0400)
committerRobert Haas <rhaas@postgresql.org>
Tue, 15 Aug 2017 13:16:33 +0000 (09:16 -0400)
commitd57929afc7063431f80a0ac4c510fc39aacd22e6
treef57bd16d35681271a158e59197dc02e09eae3477
parent1295a777882b8ed180a854e249f91be565a99422
Avoid unnecessary single-child Append nodes.

Before commit d3cc37f1d801a6b5cad9bf179274a8, an inheritance parent
whose only children were temp tables of other sessions would end up
as a simple scan of the parent; but with that commit, we end up with
an Append node, per a report from Ashutosh Bapat.  Tweak the logic
so that we go back to the old way, and update the function header
comment for partitioning while we're at it.

Ashutosh Bapat, reviewed by Amit Langote and adjusted by me.

Discussion: http://postgr.es/m/CAFjFpReWJr1yTkHU=OqiMBmcYCMoSW3VPR39RBuQ_ovwDFBT5Q@mail.gmail.com
src/backend/optimizer/prep/prepunion.c