私も同様の問題に直面しました。問題は次のとおりです。
関数は特定のスキーマTEST_SCHEMA
で作成されました 。次の構成を使用した場合:
<property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/postgres</property>
<property name="hibernate.default_schema">TEST_SCHEMA</property>
入手した:
org.postgresql.util.PSQLException: ERROR: function levenshtein(character varying, character varying) does not exist. No function matches the given name and argument types. You might need to add explicit type casts.
しかし、以下のように接続URLでデフォルトのスキーマを明示的に指定した場合
<property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/postgres?currentSchema=TEST_SCHEMA</property>
私の機能が見えるようになりました。