File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
hibernate-reactive-core/src/test/java/org/hibernate/reactive Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 77
88import org .hibernate .boot .MetadataSources ;
99import org .hibernate .boot .registry .StandardServiceRegistry ;
10- import org .hibernate .dialect .PostgreSQL9Dialect ;
10+ import org .hibernate .dialect .PostgreSQLDialect ;
1111import org .hibernate .reactive .provider .Settings ;
1212import org .hibernate .reactive .provider .ReactiveServiceRegistryBuilder ;
1313import 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
You can’t perform that action at this time.
0 commit comments