我在postgres中使用hmac方法时遇到错误。请帮忙。
root@go=# SELECT HMAC('MyPassword','mykey','md5');
ERROR: 42883: function hmac(unknown, unknown, unknown) does not exist
LINE 1: SELECT HMAC('MyPassword','mykey','md5');
^
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
LOCATION: ParseFuncOrColumn, parse_func.c:523
Time: 0.703 ms
答案 0 :(得分:1)
两种可能性:
您从未使用CREATE EXTENSION
安装pgcrypto。
您在不在数据库用户search_path
的{{1}}上的架构中安装了pgcrypto。