Skip to content

Commit 3658480

Browse files
committed
HHH-9967 - Fix failure Create index on Postgres with --defaultSchemaName
1 parent 930a0f7 commit 3658480

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

hibernate-core/src/main/java/org/hibernate/dialect/PostgreSQL81Dialect.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -556,4 +556,9 @@ public ResultSet getResultSet(CallableStatement statement, int position) throws
556556
public ResultSet getResultSet(CallableStatement statement, String name) throws SQLException {
557557
throw new UnsupportedOperationException( "PostgreSQL only supports accessing REF_CURSOR parameters by name" );
558558
}
559+
560+
@Override
561+
public boolean qualifyIndexName() {
562+
return false;
563+
}
559564
}

0 commit comments

Comments
 (0)