diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-07-27 21:36:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-27 21:36:25 +0200 |
commit | 88dba2e3fd64b64bcf4fae83b256b4f6f492558f (patch) | |
tree | 8e3e88ac3baf123dff78f2479cdc1730256ba261 /django/db/backends/mysql/features.py | |
parent | 9dff316be41847c505ebf397e4a52a0a71e0acc4 (diff) | |
download | django-88dba2e3fd64b64bcf4fae83b256b4f6f492558f.tar.gz |
Fixed collation tests on MySQL 8.0.30+.
The utf8_ collations are renamed to utf8mb3_* on MySQL 8.0.30+.
Diffstat (limited to 'django/db/backends/mysql/features.py')
-rw-r--r-- | django/db/backends/mysql/features.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/django/db/backends/mysql/features.py b/django/db/backends/mysql/features.py index db04d42e24..2d5487446e 100644 --- a/django/db/backends/mysql/features.py +++ b/django/db/backends/mysql/features.py @@ -66,11 +66,14 @@ class DatabaseFeatures(BaseDatabaseFeatures): @cached_property def test_collations(self): charset = "utf8" - if self.connection.mysql_is_mariadb and self.connection.mysql_version >= ( - 10, - 6, + if ( + self.connection.mysql_is_mariadb + 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" return { "ci": f"{charset}_general_ci", |