I have the fresh AWS RDS Postgres (v 11) instance. I've installed the pgcrypto
extension and it doesn't allow to do that again:
CREATE EXTENSION pgcrypto;
Error in query (7): ERROR: extension "pgcrypto" already exists
But I can't use the extension functions:
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.
What I'm doing wrong?