HHH-9967 - Fix failure Create index on Postgres with --defaultSchemaName

This commit is contained in:
Andrea Boriero 2015-07-27 15:58:25 +01:00
parent 930a0f7075
commit 3658480642
1 changed files with 5 additions and 0 deletions

View File

@ -556,4 +556,9 @@ public class PostgreSQL81Dialect extends Dialect {
public ResultSet getResultSet(CallableStatement statement, String name) throws SQLException {
throw new UnsupportedOperationException( "PostgreSQL only supports accessing REF_CURSOR parameters by name" );
}
@Override
public boolean qualifyIndexName() {
return false;
}
}