codecamp

PostgreSQL pg_policies

视图pg_policies提供了有关数据库中行级 安全性策略的信息。

表 51.76. pg_policies Columns

列类型

描述

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 条件增加的表达式



PostgreSQL pg_matviews
PostgreSQL pg_prepared_statements
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

PostgreSQL SQL语言

PostgreSQL 服务器管理

PostgreSQL 客户端接口

PostgreSQL 服务器编程

PostgreSQL 参考

PostgreSQL 内部

PostgreSQL 附录

PostgreSQL 参考书目

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }