diff --git a/django/db/backends/mysql/base.py b/django/db/backends/mysql/base.py
index 5ad7b89..751526a 100644
a
|
b
|
class DatabaseOperations(BaseDatabaseOperations):
|
194 | 194 | if (field and field.get_internal_type() in ("BooleanField", "NullBooleanField") and |
195 | 195 | value in (0, 1)): |
196 | 196 | value = bool(value) |
197 | | return value |
| 197 | return super(DatabaseOperations, self).convert_values(value, field) |
198 | 198 | |
199 | 199 | def date_extract_sql(self, lookup_type, field_name): |
200 | 200 | # http://dev.mysql.com/doc/mysql/en/date-and-time-functions.html |