]> granicus.if.org Git - postgresql/commitdiff
docs: clarify that CREATE TABLE ... _AS_ can be parallelized
authorBruce Momjian <bruce@momjian.us>
Fri, 11 May 2018 02:37:26 +0000 (22:37 -0400)
committerBruce Momjian <bruce@momjian.us>
Fri, 11 May 2018 02:37:26 +0000 (22:37 -0400)
CREATE TABLE without AS doesn't have anything to parallelize.

doc/src/sgml/parallel.sgml

index d7f428c1d436c3ffae78f93f63227caaa1eaafc9..dd7834a763fa9000bea7dcde7d67b83947eda165 100644 (file)
@@ -152,7 +152,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%';
         The query writes any data or locks any database rows. If a query
         contains a data-modifying operation either at the top level or within
         a CTE, no parallel plans for that query will be generated.  As an
-        exception, the commands <literal>CREATE TABLE</literal>, <literal>SELECT
+        exception, the commands <literal>CREATE TABLE ... AS</literal>, <literal>SELECT
         INTO</literal>, and <literal>CREATE MATERIALIZED VIEW</literal> which create a new
         table and populate it can use a parallel plan.
       </para>