pgsql: Make RLS work with UPDATE ... WHERE CURRENT OF - Mailing list pgsql-committers

From Joe Conway
Subject pgsql: Make RLS work with UPDATE ... WHERE CURRENT OF
Date
Msg-id E1ZIj5r-00068L-Qt@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Make RLS work with UPDATE ... WHERE CURRENT OF

UPDATE ... WHERE CURRENT OF would not work in conjunction with
RLS. Arrange to allow the CURRENT OF expression to be pushed down.
Issue noted by Peter Geoghegan. Patch by Dean Rasheed. Back patch
to 9.5 where RLS was introduced.

Branch
------
REL9_5_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/7d4240d6cd91d83d263a45501cc2f44fb1d0a537

Modified Files
--------------
src/backend/optimizer/path/allpaths.c     |   40 +++++++++++
src/backend/optimizer/util/clauses.c      |   10 +++
src/test/regress/expected/rowsecurity.out |  107 +++++++++++++++++++++++++++++
src/test/regress/sql/rowsecurity.sql      |   49 +++++++++++++
4 files changed, 206 insertions(+)


pgsql-committers by date:

Previous
From: Joe Conway
Date:
Subject: pgsql: Make RLS work with UPDATE ... WHERE CURRENT OF
Next
From: Tom Lane
Date:
Subject: pgsql: Redesign tablesample method API, and do extensive code review.