]> granicus.if.org Git - postgresql/commit
Fix EXPLAIN ANALYZE SELECT INTO not to choose a parallel plan.
authorRobert Haas <rhaas@postgresql.org>
Mon, 14 Mar 2016 23:48:46 +0000 (19:48 -0400)
committerRobert Haas <rhaas@postgresql.org>
Mon, 14 Mar 2016 23:48:46 +0000 (19:48 -0400)
commit270b7daf5cb1e955f8771ec819eb810057d1779b
tree3ecc47e050deec707e0c738107cc39bbf7fce6e1
parent5864d6a4b62ada2ad60a8c456b4ee62972a9c10d
Fix EXPLAIN ANALYZE SELECT INTO not to choose a parallel plan.

We don't support any parallel write operations at present, so choosing
a parallel plan causes us to error out.  Also, add a new regression
test that uses EXPLAIN ANALYZE SELECT INTO; if we'd had this previously,
force_parallel_mode testing would have caught this issue.

Mithun Cy and Robert Haas
src/backend/commands/explain.c
src/test/regress/expected/select_into.out
src/test/regress/sql/select_into.sql