estoy tratando de ejecutar una aplicación Java embarcadero y sigo viendo este error:Postgres missing pgcrypt ability?
Caused by:
org.postgresql.util.PSQLException: ERROR: function crypt(character varying, character) does not exist| Hint: No function matches the given name and argument types. You might need to add explicit type casts.| Where: PL/pgSQL function
¿Alguien reconoce esto o cómo resolver el problema? Pensé que pgcrypt fue empaquetado en Postgres 9.1.x?
Actualmente ejecuto Mac OSX Lion 10.7 e instalé Postgres usando brew "brew install postgres".
Incluso si 'pgcrypto' se prebundled, el' crypt() '' es la firma de la cripta (texto, texto) '' y no cripta (carácter variable, carácter) 'como se ve desde su mensaje de error (tener en mind 'text' es equivalente a' character varying'). –