mirror of https://github.com/django/django.git
Quick bugfix to [207] -- MySQL doesn't have ILIKE
git-svn-id: http://code.djangoproject.com/svn/django/trunk@208 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
5797066383
commit
3e09a1fc1c
|
@ -100,8 +100,8 @@ OPERATOR_MAPPING = {
|
||||||
'lte': '<=',
|
'lte': '<=',
|
||||||
'startswith': 'LIKE',
|
'startswith': 'LIKE',
|
||||||
'endswith': 'LIKE',
|
'endswith': 'LIKE',
|
||||||
'istartswith': 'ILIKE',
|
'istartswith': 'LIKE',
|
||||||
'iendswith': 'ILIKE',
|
'iendswith': 'LIKE',
|
||||||
}
|
}
|
||||||
|
|
||||||
# This dictionary maps Field objects to their associated MySQL column
|
# This dictionary maps Field objects to their associated MySQL column
|
||||||
|
|
Loading…
Reference in New Issue