Re: Early WIP/PoC for inlining CTEs

From: Andreas Karlsson <andreas(at)proxel(dot)se>
To: Andrew Gierth <andrew(at)tao11(dot)riddles(dot)org(dot)uk>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, David Fetter <david(at)fetter(dot)org>, Thomas Munro <thomas(dot)munro(at)enterprisedb(dot)com>, Pg Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Early WIP/PoC for inlining CTEs
Date: 2019-01-02 04:29:16
Message-ID: 97ba944c-5a30-bed5-8ec5-62196b6b0825@proxel.se
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 1/1/19 3:18 AM, Andrew Gierth wrote:
> I had a comment around here which seems to have been lost:
>
> * Secondly, views (and explicit subqueries) currently have
> * different behaviour w.r.t. SELECT FOR UPDATE than CTEs do. A
> * FOR UPDATE clause is treated as extending into views and
> * subqueries, but not into CTEs. We preserve this distinction
> * by not trying to push rowmarks into the new subquery.
>
> This comment seems to me to be worth preserving (unless this behavior is
> changed). What I'm referring to is the following, which is unchanged by
> the patch:
>
> create table t1 as select 123 as a;
> create view v1 as select * from t1;
> select * from t1 for update; -- locks row in t1
> select * from t1 for update of t1; -- locks row in t1
> select * from v1 for update; -- locks row in t1
> select * from v1 for update of v1; -- locks row in t1
> select * from (select * from t1) s1 for update; -- locks row in t1
> select * from (select * from t1) s1 for update of s1; -- locks row in t1
> with c1 as (select * from t1)
> select * from c1 for update; -- does NOT lock anything at all
> with c1 as (select * from t1)
> select * from c1 for update of c1; -- parse-time error
>
> (Obviously, inlining decisions should not change what gets locked;
> the behavior here should not be changed unless it is changed for both
> inlined and non-inlined CTEs.)

I see, I misread the comment. I will re-add it, possibly with some word
smithing. Thanks!

Andreas

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Andreas Karlsson 2019-01-02 04:31:30 Re: Early WIP/PoC for inlining CTEs
Previous Message Alvaro Herrera 2019-01-02 03:05:10 Re: [PATCH] get rid of StdRdOptions, use individual binary reloptions representation for each relation kind instead