mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge branch '4.10' into 4.11
This commit is contained in:
commit
b24c289892
@ -23,10 +23,12 @@ class Utf8TestHelper implements TestOnly
|
|||||||
public function getUpdatedUtfCollationForCurrentDB(string $collation): string
|
public function getUpdatedUtfCollationForCurrentDB(string $collation): string
|
||||||
{
|
{
|
||||||
if ($collation === 'utf8_general_ci') {
|
if ($collation === 'utf8_general_ci') {
|
||||||
return $this->isMariaDBGte106() ? 'utf8mb3_general_ci' : 'utf8_general_ci';
|
return $this->isMariaDBGte106() || $this->isMySqlGte8030()
|
||||||
|
? 'utf8mb3_general_ci' : 'utf8_general_ci';
|
||||||
}
|
}
|
||||||
if ($collation === 'utf8_unicode_520_ci') {
|
if ($collation === 'utf8_unicode_520_ci') {
|
||||||
return $this->isMariaDBGte106() ? 'utf8mb3_unicode_520_ci' : 'utf8_unicode_520_ci';
|
return $this->isMariaDBGte106() || $this->isMySqlGte8030()
|
||||||
|
? 'utf8mb3_unicode_520_ci' : 'utf8_unicode_520_ci';
|
||||||
}
|
}
|
||||||
return $collation;
|
return $collation;
|
||||||
}
|
}
|
||||||
@ -45,6 +47,28 @@ class Utf8TestHelper implements TestOnly
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starting with 8.0.30, utf8mb3 is reported for the collation as well
|
||||||
|
* https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-30.html
|
||||||
|
*/
|
||||||
|
private function isMySqlGte8030(): bool
|
||||||
|
{
|
||||||
|
// Example MySQL version: 8.0.29
|
||||||
|
if (preg_match('#^([0-9]+)\.([0-9]+)\.([0-9]+)$#', $this->getDBVersion(), $m)) {
|
||||||
|
if ((int) $m[1] >= 8) {
|
||||||
|
if ((int) $m[2] === 0) {
|
||||||
|
if ((int) $m[3] >= 30) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Until MariaDB 10.5, utf8mb3 was an alias for utf8.
|
* Until MariaDB 10.5, utf8mb3 was an alias for utf8.
|
||||||
* From MariaDB 10.6, utf8 is by default an alias for utf8mb3
|
* From MariaDB 10.6, utf8 is by default an alias for utf8mb3
|
||||||
|
Loading…
Reference in New Issue
Block a user