gpt4 book ai didi

PostgreSQL : function set_config(unknown, bigint, bool 值)不存在

转载 作者:行者123 更新时间:2023-11-29 13:19:49 31 4
gpt4 key购买 nike

我正在尝试对 plpgpsq 使用 current_setting() 和 set_config() 函数,以更改我添加到我的 postgresql.conf 文件中的自定义设置的值。

这是我添加到 postgresql.conf 文件末尾的内容:

IntegrityPackage.NestLevel = 0

重新启动 PostgreSQL 服务后,这是我想查看设置值时得到的结果:

select current_setting('IntegrityPackage.NestLevel');

current_setting |
----------------|
0 |

但是,当我尝试编辑该值时,我收到一条错误消息:

select set_config('IntegrityPackage.NestLevel', 0, false);

ERROR: function set_config(unknown, bigint, boolean) doesn't exist.
Hint: No function corresponds to given name and argument types
You must add explicit type conversions

(由于错误消息是法语,因此含糊不清地从法语翻译而来)

关于此的文档很少,因此我被卡住了,我想不出另一种方法来做到这一点。

编辑 - 确切的错误文本(在 psql 9.2/postgresql 10.0 中)是:

ERROR:  function set_config(unknown, integer, boolean) does not exist
LINE 1: select set_config('my.foo',obj_id::int ,false) from objects ...
^
HINT: No function matches the given name and argument types. You might need to add explicit type casts.

最佳答案

这会起作用:

select set_config('IntegrityPackage.NestLevel', '0', false);

关于PostgreSQL : function set_config(unknown, bigint, bool 值)不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44021107/

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