Re: Pg10 : Client Configuration for Parallelism ? - Mailing list pgsql-performance

From Gunther Schadow
Subject Re: Pg10 : Client Configuration for Parallelism ?
Date
Msg-id 01889de3-4507-a496-caa6-1ae138e3eb69@pragmaticdata.com
Whole thread Raw
In response to Re: Pg10 : Client Configuration for Parallelism ?  (Thomas Kellerer <spam_eater@gmx.net>)
List pgsql-performance
On 4/17/2019 4:33, Thomas Kellerer wrote:
A CTE would prevent parallelism. 

You mean like always? His

SELECT count(1) FROM BigTable 

would be parallel if run alone but as

WITH Data AS (SELECT count(1) FROM BigTable) SELECT * FROM Data 

nothing would be parallel any more? How about:

SELECT * FROM (SELECT count(1) FROM BigTable) x

Parallel or not?

-Gunther

pgsql-performance by date:

Previous
From:
Date:
Subject: RE: Pg10 : Client Configuration for Parallelism ?
Next
From: Gunther Schadow
Date:
Subject: Re: Pg10 : Client Configuration for Parallelism ?