HHH-9967 - Fix failure Create index on Postgres with --defaultSchemaName
This commit is contained in:
parent
930a0f7075
commit
3658480642
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue