File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -343,6 +343,14 @@ public function testUtf8mb4Support(): void
343
343
$ tableAlias = '名 ' ;
344
344
}
345
345
346
+ // remove once https://bugs.mysql.com/bug.php?id=109699 is fixed
347
+ if ($ this ->getDatabasePlatform () instanceof MySQLPlatform) {
348
+ $ serverVersion = $ this ->getConnection ()->getConnection ()->getWrappedConnection ()->getServerVersion (); // @phpstan-ignore-line
349
+ if ($ serverVersion === '8.0.32 ' ) {
350
+ static ::markTestIncomplete ('MySQL Server 8.0.32 optimizer is broken ' );
351
+ }
352
+ }
353
+
346
354
static ::assertSame (
347
355
[$ columnAlias => 'žlutý_😀 ' ],
348
356
$ this ->q (
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ public function testBasic2(): void
114
114
if ($ this ->getDatabasePlatform () instanceof MySQLPlatform) {
115
115
$ serverVersion = $ this ->getConnection ()->getConnection ()->getWrappedConnection ()->getServerVersion (); // @phpstan-ignore-line
116
116
if (preg_match ('~^5\.6~ ' , $ serverVersion )) {
117
- static ::markTestIncomplete ('TODO MySQL: Unique key exceed max key (767 bytes) length ' );
117
+ static ::markTestIncomplete ('TODO MySQL 5.6 : Unique key exceed max key (767 bytes) length ' );
118
118
}
119
119
}
120
120
$ this ->markTestIncompleteWhenCreateUniqueIndexIsNotSupportedByPlatform ();
You can’t perform that action at this time.
0 commit comments