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:
Adrian Holovaty 2005-07-19 15:24:27 +00:00
parent 5797066383
commit 3e09a1fc1c
1 changed files with 2 additions and 2 deletions

View File

@ -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