codecamp

PostgreSQL role_routine_grants

视图role_routine_grants标识所有在函数上授予的特权,这些特权的授予者或者被授予者是一个当前已被启用的角色。更多信息可以在routine_privileges中找到。这个视图和routine_privileges之间的唯一实质性区别是:这个视图忽略那些以授予给PUBLIC的方式使当前用户获得其访问权限的函数。

表 36.34. role_routine_grants

列类型

描述

grantor sql_identifier

授予该特权的角色名称

grantee sql_identifier

被授予该特权的角色名称

specific_catalog sql_identifier

包含该函数的数据库名称(总是当前数据库)

specific_schema sql_identifier

包含该函数的模式名称

specific_name sql_identifier

该函数的专用名。详见第 36.41 节

routine_catalog sql_identifier

包含该函数的数据库名称(总是当前数据库)

routine_schema sql_identifier

包含该函数的模式名称

routine_name sql_identifier

该函数的名称(在重载的情况下可能会重复)

privilege_type character_data

总是为EXECUTE(函数唯一的特权类型)

is_grantable yes_or_no

如果该特权是可授予的,则为YES,否则为NO



PostgreSQL role_column_grants
PostgreSQL role_table_grants
温馨提示
下载编程狮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; }