Skip to content

Commit aabec88

Browse files
committed
Restore compatibility with latest Hibernate ORM 6.2.0-SNAPSHOT
1 parent b182e67 commit aabec88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hibernate-reactive-core/src/test/java/org/hibernate/reactive/StandAloneReactiveTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import org.hibernate.boot.MetadataSources;
99
import org.hibernate.boot.registry.StandardServiceRegistry;
10-
import org.hibernate.dialect.PostgreSQL9Dialect;
10+
import org.hibernate.dialect.PostgreSQLDialect;
1111
import org.hibernate.reactive.provider.Settings;
1212
import org.hibernate.reactive.provider.ReactiveServiceRegistryBuilder;
1313
import org.hibernate.reactive.stage.Stage;
@@ -21,7 +21,7 @@ public class StandAloneReactiveTest {
2121
public void createReactiveSessionFactory() {
2222
StandardServiceRegistry registry = new ReactiveServiceRegistryBuilder()
2323
.applySetting( Settings.TRANSACTION_COORDINATOR_STRATEGY, "jta" )
24-
.applySetting( Settings.DIALECT, PostgreSQL9Dialect.class.getName() )
24+
.applySetting( Settings.DIALECT, PostgreSQLDialect.class.getName() )
2525
.applySetting( Settings.URL, "jdbc:postgresql://localhost/hreact?user=none" )
2626
.build();
2727

0 commit comments

Comments
 (0)