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 7
7
8
8
import org .hibernate .boot .MetadataSources ;
9
9
import org .hibernate .boot .registry .StandardServiceRegistry ;
10
- import org .hibernate .dialect .PostgreSQL9Dialect ;
10
+ import org .hibernate .dialect .PostgreSQLDialect ;
11
11
import org .hibernate .reactive .provider .Settings ;
12
12
import org .hibernate .reactive .provider .ReactiveServiceRegistryBuilder ;
13
13
import org .hibernate .reactive .stage .Stage ;
@@ -21,7 +21,7 @@ public class StandAloneReactiveTest {
21
21
public void createReactiveSessionFactory () {
22
22
StandardServiceRegistry registry = new ReactiveServiceRegistryBuilder ()
23
23
.applySetting ( Settings .TRANSACTION_COORDINATOR_STRATEGY , "jta" )
24
- .applySetting ( Settings .DIALECT , PostgreSQL9Dialect .class .getName () )
24
+ .applySetting ( Settings .DIALECT , PostgreSQLDialect .class .getName () )
25
25
.applySetting ( Settings .URL , "jdbc:postgresql://localhost/hreact?user=none" )
26
26
.build ();
27
27
You can’t perform that action at this time.
0 commit comments