pgsql: Add usebypassrls to pg_user and pg_shadow

From: Stephen Frost <sfrost(at)snowman(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Add usebypassrls to pg_user and pg_shadow
Date: 2015-01-29 02:47:23
Message-ID: E1YGf8d-0004Y9-2J@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add usebypassrls to pg_user and pg_shadow

The row level security patches didn't add the 'usebypassrls' columns to
the pg_user and pg_shadow views on the belief that they were deprecated,
but we havn't actually said they are and therefore we should include it.

This patch corrects that, adds missing documentation for rolbypassrls
into the system catalog page for pg_authid, along with the entries for
pg_user and pg_shadow, and cleans up a few other uses of 'row-level'
cases to be 'row level' in the docs.

Pointed out by Amit Kapila.

Catalog version bump due to system view changes.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/c7cf9a243336d5f48bb4a4297c9fba4210f3e981

Modified Files
--------------
doc/src/sgml/catalogs.sgml | 33 +++++++++++++++++++++++++++++++--
src/backend/catalog/system_views.sql | 2 ++
src/include/catalog/catversion.h | 2 +-
src/test/regress/expected/rules.out | 2 ++
4 files changed, 36 insertions(+), 3 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Stephen Frost 2015-01-29 03:16:37 pgsql: Improve CREATE POLICY documentation
Previous Message Stephen Frost 2015-01-28 22:43:39 pgsql: Clean up range-table building in copy.c