Sto cercando di eseguire un'applicazione Java Jetty e continuo a vedere questo errore:Postgres manca l'abilità pgcrypt?
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
Qualcuno riconosce questo o come risolvere il problema? Pensavo che pgcrypt fosse prebundled in Postgres 9.1.x?
Attualmente eseguo Mac OSX Lion 10.7 e ho installato Postgres utilizzando brew "brew install postgres".
Anche se 'pgcrypto' è prebundled, il' crypt() '' firma è crypt (testo, testo) 'e non' crypt (character varying, carattere) 'come si è visto dal vostro messaggio di errore (tenere a mind 'text' è equivalente a' character varying'). –