Re: [v9.3] Row-Level Security - Mailing list pgsql-hackers

From Tom Lane
Subject Re: [v9.3] Row-Level Security
Date
Msg-id 13647.1340898410@sss.pgh.pa.us
Whole thread Raw
In response to Re: [v9.3] Row-Level Security  (Florian Pflug <fgp@phlo.org>)
List pgsql-hackers
Florian Pflug <fgp@phlo.org> writes:
> On Jun28, 2012, at 17:29 , Tom Lane wrote:
>> I believe it works today, because the executor only applies permissions
>> checks during query startup.  So those checks are executed while still
>> within the SECURITY DEFINER context, and should behave as expected.
>> Subsequently, the cursor portal is returned to caller and caller can
>> execute it to completion, no problem.

> Don't we (sometimes?) defer query startup to the first time FETCH is
> called?

There are things inside individual plan node functions that may only
happen when the first row is demanded, but permissions checks are done
in ExecutorStart().
        regards, tom lane


pgsql-hackers by date:

Previous
From: Jeff Janes
Date:
Subject: Re: Covering Indexes
Next
From: Andrew Dunstan
Date:
Subject: Re: Covering Indexes