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 27
27
import io .vertx .ext .unit .TestContext ;
28
28
29
29
import static org .hibernate .reactive .containers .DatabaseConfiguration .DBType .COCKROACHDB ;
30
+ import static org .hibernate .reactive .containers .DatabaseConfiguration .DBType .MYSQL ;
30
31
import static org .hibernate .reactive .containers .DatabaseConfiguration .DBType .ORACLE ;
31
32
import static org .hibernate .reactive .containers .DatabaseConfiguration .dbType ;
32
33
@@ -70,8 +71,9 @@ public void testSequenceGenerator(TestContext context) {
70
71
public static class SequenceGeneratorDefaultSchemaTest extends SequenceGeneratorTest {
71
72
72
73
// COCKROACHDB: we don't have permission to create schema in the CI!
74
+ // MYSQL: See https://github.com/hibernate/hibernate-reactive/issues/1525
73
75
@ Rule
74
- public DatabaseSelectionRule dbRule = DatabaseSelectionRule .skipTestsFor ( COCKROACHDB );
76
+ public DatabaseSelectionRule dbRule = DatabaseSelectionRule .skipTestsFor ( COCKROACHDB , MYSQL );
75
77
76
78
@ Override
77
79
protected Configuration constructConfiguration () {
You can’t perform that action at this time.
0 commit comments