diff --git a/tests/framework/db/SchemaTest.php b/tests/framework/db/SchemaTest.php index fcc3036d8a1..4dfa40b915c 100644 --- a/tests/framework/db/SchemaTest.php +++ b/tests/framework/db/SchemaTest.php @@ -774,6 +774,7 @@ public function testTableSchemaConstraints($tableName, $type, $expected) } if ( + $this->driverName === 'mysql' && version_compare($this->getConnection(false)->getServerVersion(), '8.0.16', '<') && $type === 'checks' ) { @@ -797,6 +798,7 @@ public function testTableSchemaConstraintsWithPdoUppercase($tableName, $type, $e } if ( + $this->driverName === 'mysql' && version_compare($this->getConnection(false)->getServerVersion(), '8.0.16', '<') && $type === 'checks' ) { @@ -822,6 +824,7 @@ public function testTableSchemaConstraintsWithPdoLowercase($tableName, $type, $e } if ( + $this->driverName === 'mysql' && version_compare($this->getConnection(false)->getServerVersion(), '8.0.16', '<') && $type === 'checks' ) {