diff options
author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2020-07-03 00:26:01 +0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-02 21:26:01 +0200 |
commit | 37389ae99eb17ee8e2db39545d0e13f5ab8f006a (patch) | |
tree | 3c268980f060bf7601a80b92c91262c125d4fa8c /django/db/backends/mysql/features.py | |
parent | b142bd4a1b83b77c5c81a8cf5a80a63608f96ad4 (diff) | |
download | django-37389ae99eb17ee8e2db39545d0e13f5ab8f006a.tar.gz |
Fixed #31758 -- Removed unneeded BytesToCharFieldConversionMixin.
Bug was fixed in mysqlclient 1.3.13.
Diffstat (limited to 'django/db/backends/mysql/features.py')
-rw-r--r-- | django/db/backends/mysql/features.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/backends/mysql/features.py b/django/db/backends/mysql/features.py index b8aed23207..06a111a75b 100644 --- a/django/db/backends/mysql/features.py +++ b/django/db/backends/mysql/features.py @@ -41,7 +41,6 @@ class DatabaseFeatures(BaseDatabaseFeatures): SET V_I = P_I; END; """ - db_functions_convert_bytes_to_str = True # Neither MySQL nor MariaDB support partial indexes. supports_partial_indexes = False supports_order_by_nulls_modifier = False |