如何在psql控制台下检查函数的权限
您能否告诉我如何使用 psql 控制台检查函数的权限,但又不会被源代码和描述淹没(例如使用 \df+ 时)。
Could you tell me please how to check permissions to functions with psql console but without being overwhelmed with source code and descirption (like when using \df+).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于更简单的查询,请使用:
结果如下:
这表明
test1
用户也可以访问此函数。有关更多详细信息,请参阅
psql
邮件列表上的讨论:psql 缺少功能:显示函数的权限。For a simpler query, use:
The results is like:
which shows that
test1
user also has access to this function.For more details, see the discussion on
psql
's mailing list: psql missing feature: show permissions for functions.您可以查询系统表:
You could query the system tables: