diff --git a/django/core/db/backends/mysql.py b/django/core/db/backends/mysql.py index 9e96ed692e..307a3e2713 100644 --- a/django/core/db/backends/mysql.py +++ b/django/core/db/backends/mysql.py @@ -100,8 +100,8 @@ OPERATOR_MAPPING = { 'lte': '<=', 'startswith': 'LIKE', 'endswith': 'LIKE', - 'istartswith': 'ILIKE', - 'iendswith': 'ILIKE', + 'istartswith': 'LIKE', + 'iendswith': 'LIKE', } # This dictionary maps Field objects to their associated MySQL column