]> granicus.if.org Git - postgresql/commit
Fix crashes on plans with multiple Gather (Merge) nodes.
authorRobert Haas <rhaas@postgresql.org>
Mon, 18 Dec 2017 17:17:37 +0000 (12:17 -0500)
committerRobert Haas <rhaas@postgresql.org>
Mon, 18 Dec 2017 17:31:10 +0000 (12:31 -0500)
commitb70ea4c75e5f94fd7757ea4a522aee6724885288
tree759daa20f034ced5ca0fcb5c8d0a46e58ee28d6d
parentac93acbc05be2ef995208c1ca17f8083f60ccc53
Fix crashes on plans with multiple Gather (Merge) nodes.

es_query_dsa turns out to be broken by design, because it supposes
that there is only one DSA for the whole query, whereas there is
actually one per Gather (Merge) node.  For now, work around that
problem by setting and clearing the pointer around the sections of
code that might need it.  It's probably a better idea to get rid of
es_query_dsa altogether in favor of having each node keep track
individually of which DSA is relevant, but that seems like more than
we would want to back-patch.

Thomas Munro, reviewed and tested by Andreas Seltenreich, Amit
Kapila, and by me.

Discussion: http://postgr.es/m/CAEepm=1U6as=brnVvMNixEV2tpi8NuyQoTmO8Qef0-VV+=7MDA@mail.gmail.com
src/backend/executor/execParallel.c
src/backend/executor/nodeGather.c
src/backend/executor/nodeGatherMerge.c