53.14. pg_policies #

Представление pg_policies даёт доступ к полезной информации обо всех политиках защиты на уровне строк в базе данных.

Таблица 53.14. Столбцы pg_policies

Тип столбца

Описание

schemaname name (ссылается на pg_namespace.nspname)

Имя схемы, содержащей таблицу с этой политикой

tablename name (ссылается на pg_class.relname)

Имя таблицы с этой политикой

policyname name (ссылается на pg_policy.polname)

Имя политики

permissive text

Является ли политика разрешительной или ограничительной?

roles name[]

Роли, к которым применяется политика

cmd text

Тип команды, к которому применяется политика

qual text

Выражение, добавляемое к условиям барьера безопасности в запросы, к которым применяется политика

with_check text

Выражение, добавляемое к условиям WITH CHECK в запросы, которые пытаются добавлять строки в таблицу


53.14. pg_policies #

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

Table 53.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


FAQ