From 5e45211a64149b3c659b90ff2de6fa982a5a93ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 14:17:33 +0200 Subject: Adding upstream version 15.5. Signed-off-by: Daniel Baumann --- doc/src/sgml/html/view-pg-policies.html | 55 +++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 doc/src/sgml/html/view-pg-policies.html (limited to 'doc/src/sgml/html/view-pg-policies.html') diff --git a/doc/src/sgml/html/view-pg-policies.html b/doc/src/sgml/html/view-pg-policies.html new file mode 100644 index 0000000..c123ca8 --- /dev/null +++ b/doc/src/sgml/html/view-pg-policies.html @@ -0,0 +1,55 @@ + +54.14. pg_policies

54.14. pg_policies

+ The view pg_policies provides access to + useful information about each row-level security policy in the database. +

Table 54.14. pg_policies Columns

+ Column Type +

+

+ Description +

+ schemaname name + (references pg_namespace.nspname) +

+

+ Name of schema containing table policy is on +

+ tablename name + (references pg_class.relname) +

+

+ Name of table policy is on +

+ policyname name + (references pg_policy.polname) +

+

+ Name of policy +

+ permissive text +

+

+ Is the policy permissive or restrictive? +

+ roles name[] +

+

+ The roles to which this policy applies +

+ cmd text +

+

+ The command type to which the policy is applied +

+ qual text +

+

+ The expression added to the security barrier qualifications for + queries that this policy applies to +

+ with_check text +

+

+ The expression added to the WITH CHECK qualifications for + queries that attempt to add rows to this table +


\ No newline at end of file -- cgit v1.2.3