Index: django/db/backends/mysql_old/base.py
===================================================================
--- django/db/backends/mysql_old/base.py        (revision 5510)
+++ django/db/backends/mysql_old/base.py        (working copy)
@@ -225,7 +225,7 @@
     return []
 
 OPERATOR_MAPPING = {
-    'exact': '= %s',
+    'exact': '= BINARY %s',
     'iexact': 'LIKE %s',
     'contains': 'LIKE BINARY %s',
     'icontains': 'LIKE %s',
Index: django/db/backends/mysql/base.py
===================================================================
--- django/db/backends/mysql/base.py    (revision 5510)
+++ django/db/backends/mysql/base.py    (working copy)
@@ -224,7 +224,7 @@
     return []
 
 OPERATOR_MAPPING = {
-    'exact': '= %s',
+    'exact': '= BINARY %s',
     'iexact': 'LIKE %s',
     'contains': 'LIKE BINARY %s',
     'icontains': 'LIKE %s',
