mirror of
https://github.com/django/django.git
synced 2025-09-14 22:45:45 +00:00
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
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue