File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
hibernate-reactive-core/src/test/java/org/hibernate/reactive Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 26
26
import jakarta .persistence .Id ;
27
27
import jakarta .persistence .Table ;
28
28
29
+ import static org .hibernate .reactive .containers .DatabaseConfiguration .DBType .COCKROACHDB ;
29
30
import static org .hibernate .reactive .containers .DatabaseConfiguration .DBType .DB2 ;
30
31
import static org .hibernate .reactive .containers .DatabaseConfiguration .dbType ;
31
32
import static org .hibernate .reactive .provider .Settings .DIALECT ;
38
39
public class ORMReactivePersistenceTest extends BaseReactiveTest {
39
40
40
41
// DB2: The CompletionStage test throw java.lang.IllegalStateException: Needed to have 6 in buffer...
42
+ // Cockroach: We need to change the URL schema we normally use for testing
41
43
@ Rule
42
- public DatabaseSelectionRule skip = DatabaseSelectionRule .skipTestsFor ( DB2 );
44
+ public DatabaseSelectionRule skip = DatabaseSelectionRule .skipTestsFor ( DB2 , COCKROACHDB );
43
45
44
46
private SessionFactory ormFactory ;
45
47
You can’t perform that action at this time.
0 commit comments