Django

Code

Changeset 208

Show
Ignore:
Timestamp:
07/19/05 10:24:27 (3 years ago)
Author:
adrian
Message:

Quick bugfix to [207] -- MySQL doesn't have ILIKE

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/core/db/backends/mysql.py

    r207 r208  
    101101    'startswith': 'LIKE', 
    102102    'endswith': 'LIKE', 
    103     'istartswith': 'ILIKE', 
    104     'iendswith': 'ILIKE', 
     103    'istartswith': 'LIKE', 
     104    'iendswith': 'LIKE', 
    105105} 
    106106