gpt4 book ai didi

postgresql - Postgres pg_background_launch 权限被拒绝

转载 作者:行者123 更新时间:2023-11-29 13:44:40 30 4
gpt4 key购买 nike

我试图通过使用 pg_background 扩展在 Postgres 中实现自治事务。虽然安装了,但是调用不了pg_background_launch这个函数。

命令 CREATE EXTENSION pg_background 返回错误 ERROR: extension "pg_background"already exists,所以我知道它已经存在。

但是当我运行查询 SELECT pg_background_launch('SELECT 1'); 时它返回错误 ERROR: permission denied for function pg_background_launch

知道吗,我错过了什么?是否需要授予一些特权?在此处的文档中 https://github.com/vibhorkum/pg_background ,在创建扩展后没有做更多的事情。

最佳答案

您需要创建扩展的用户向其他用户授予对功能的访问权限:

GRANT ALL ON FUNCTION public.pg_background_launch(sql text, queue_size integer) to some_user;
GRANT ALL ON FUNCTION public.pg_background_result(pid integer) to some_user;
GRANT ALL ON FUNCTION public.pg_background_detach(pid integer) to some_user;

关于postgresql - Postgres pg_background_launch 权限被拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50346292/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com