Re: SOLVED - RE: Poor performance using CTE - Mailing list pgsql-performance

From Claudio Freire
Subject Re: SOLVED - RE: Poor performance using CTE
Date
Msg-id CAGTBQpZ1CcEt+eXRbrZipWPGEd9pNH+qeO9OtPuLUh6GMVzk1Q@mail.gmail.com
Whole thread Raw
In response to Re: SOLVED - RE: Poor performance using CTE  (Merlin Moncure <mmoncure@gmail.com>)
List pgsql-performance
On Tue, Nov 20, 2012 at 5:24 PM, Merlin Moncure <mmoncure@gmail.com> wrote:
> On Tue, Nov 20, 2012 at 1:53 PM, Jon Nelson <jnelson+pgsql@jamponi.net> wrote:
>> As can be seen by the current conversation, not everyone is convinced
> that CTEs ought to be an explicit optimization barrier
>
> On Tue, Nov 20, 2012 at 1:26 PM, Claudio Freire <klaussfreire@gmail.com> wrote:
>> It *could* just be a lack of imagination on my part. But if it were
>> not, then it'd be nice for it to be done automatically (since this
>> particular CTE behavior bites enough people already).
>
> Sure.  I just find it personally hard to find a good demarcation line
> between A: "queries where pushing quals through are universally
> beneficial and wanted" and B: "queries where we are inserting an
> explicit materialization step to avoid planner issues", particularly
> where there is substantial overlap with between A and C: "queries that
> are written with a CTE and arguably shouldn't be".
>
> Put another way, I find CTE to express: 'this then that' where joins
> express 'this with that'.  So current behavior is not surprising at
> all. All that said, there could be a narrow class of low hanging cases
> (such as the OP's) that could be sniped...I'm just skeptical.

It could work very well towards CTE-including views, where the quals
cannot be added in the view but would be present when the view is
expanded in final queries.


pgsql-performance by date:

Previous
From: Merlin Moncure
Date:
Subject: Re: SOLVED - RE: Poor performance using CTE
Next
From: Tom Lane
Date:
Subject: Re: SOLVED - RE: Poor performance using CTE