diff --git a/exposed-tests/src/test/kotlin/org/jetbrains/exposed/sql/tests/sqlite/ForeignKeyConstraintTests.kt b/exposed-tests/src/test/kotlin/org/jetbrains/exposed/sql/tests/sqlite/ForeignKeyConstraintTests.kt index 2c43e4abc8..65de81c13e 100644 --- a/exposed-tests/src/test/kotlin/org/jetbrains/exposed/sql/tests/sqlite/ForeignKeyConstraintTests.kt +++ b/exposed-tests/src/test/kotlin/org/jetbrains/exposed/sql/tests/sqlite/ForeignKeyConstraintTests.kt @@ -184,7 +184,7 @@ class ForeignKeyConstraintTests : DatabaseTestsBase() { override val primaryKey = PrimaryKey(id) } - withTables(category, item) { testDb -> + withTables(excludeSettings = listOf(TestDB.MYSQL_V5), category, item) { testDb -> if (currentDialectTest.supportsOnUpdate) { val constraints = connection.metadata { tableConstraints(listOf(item))