【发布时间】:2019-05-26 07:06:25
【问题描述】:
我有新的 AWS RDS Postgres (v 11) 实例。我已经安装了pgcrypto 扩展,它不允许再次这样做:
CREATE EXTENSION pgcrypto;
Error in query (7): ERROR: extension "pgcrypto" already exists
但是我不能使用扩展功能:
select gen_salt('bf');
Error in query (7): ERROR: function gen_salt(unknown) does not exist
LINE 1: select gen_salt('bf')
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
我做错了什么?
【问题讨论】:
-
有趣....
-
我猜你可以在目录中找到它。如果您没有自己安装,那么您应该在找到修复程序后在此处添加答案
标签: postgresql amazon-web-services amazon-rds pgcrypto