]> granicus.if.org Git - postgresql/commit
Fix confusion about number of subplans in partitioned INSERT setup.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 13 Jun 2017 03:29:44 +0000 (23:29 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 13 Jun 2017 03:29:53 +0000 (23:29 -0400)
commit78a030a441966d91bc7e932ef84da39c3ea7d970
tree52b89450f9f11fa3f0b3b114218c3edac70cf82c
parent791ef001c9fe980e32092227a72ec24a7d66fa3d
Fix confusion about number of subplans in partitioned INSERT setup.

ExecInitModifyTable() thought there was a plan per partition, but no,
there's only one.  The problem had escaped detection so far because there
would only be visible misbehavior if there were a SubPlan (not an InitPlan)
in the quals being duplicated for each partition.  However, valgrind
detected a bogus memory access in test cases added by commit 4f7a95be2,
and investigation of that led to discovery of the bug.  The additional
test case added here crashes without the patch.

Patch by Amit Langote, test case by me.

Discussion: https://postgr.es/m/10974.1497227727@sss.pgh.pa.us
src/backend/executor/nodeModifyTable.c
src/test/regress/expected/rowsecurity.out
src/test/regress/sql/rowsecurity.sql