Parallel queries on CTE for writing operations. - Mailing list pgsql-docs

From joanmi@gmail.com
Subject Parallel queries on CTE for writing operations.
Date
Msg-id 20161013074837.1403.54677@wrigleys.postgresql.org
Whole thread Raw
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/9.6/static/release-9-6.html
Description:

Hello everybody.

I have a doubt about parallel queries and writing operations.

According to
https://www.postgresql.org/docs/9.6/static/release-9-6.html#AEN130398

«Only strictly read-only queries where the driving table is accessed via a
sequential scan can be parallelized»

My question is: If a WITH clause contains only read operations, but its
results is used to feed a writing operation, like an insert or update, it is
not allowed to parallelize sequential scans?

For example:

WITH foobarbaz AS (
  SELECT foo FROM bar
  WHERE some_expensive_function(baz)
)
DELETE FROM bar
USING foobarbaz
WHERE bar.foo = foobarbaz.foo
;

Is that foobarbaz calculation expected to be parallelized or it is
disallowed because of the delete sentence?

Thanks in advance.

Regards.

-- 
Joanmi

pgsql-docs by date:

Previous
From: Pantelis Theodosiou
Date:
Subject: Re: Table names in upper case
Next
From: Jürgen Purtz
Date:
Subject: Re: Docbook 5.x