Fixed collation tests on MySQL 8.0.30+.
The utf8_ collations are renamed to utf8mb3_* on MySQL 8.0.30+.
This commit is contained in:
parent
9dff316be4
commit
88dba2e3fd
|
@ -66,11 +66,14 @@ class DatabaseFeatures(BaseDatabaseFeatures):
|
||||||
@cached_property
|
@cached_property
|
||||||
def test_collations(self):
|
def test_collations(self):
|
||||||
charset = "utf8"
|
charset = "utf8"
|
||||||
if self.connection.mysql_is_mariadb and self.connection.mysql_version >= (
|
if (
|
||||||
10,
|
self.connection.mysql_is_mariadb
|
||||||
6,
|
and self.connection.mysql_version >= (10, 6)
|
||||||
|
) or (
|
||||||
|
not self.connection.mysql_is_mariadb
|
||||||
|
and self.connection.mysql_version >= (8, 0, 30)
|
||||||
):
|
):
|
||||||
# utf8 is an alias for utf8mb3 in MariaDB 10.6+.
|
# utf8 is an alias for utf8mb3 in MariaDB 10.6+ and MySQL 8.0.30+.
|
||||||
charset = "utf8mb3"
|
charset = "utf8mb3"
|
||||||
return {
|
return {
|
||||||
"ci": f"{charset}_general_ci",
|
"ci": f"{charset}_general_ci",
|
||||||
|
|
Loading…
Reference in New Issue