mirror of https://github.com/django/django.git
Fixed #2379 -- Fixed 'search' DB lookup parameter, which was broken by [3248]. Thanks, Tim Keating
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3400 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
aa8b34cb92
commit
be2524182b
|
@ -18,7 +18,7 @@ QUERY_TERMS = (
|
|||
'exact', 'iexact', 'contains', 'icontains',
|
||||
'gt', 'gte', 'lt', 'lte', 'in',
|
||||
'startswith', 'istartswith', 'endswith', 'iendswith',
|
||||
'range', 'year', 'month', 'day', 'isnull',
|
||||
'range', 'year', 'month', 'day', 'isnull', 'search',
|
||||
)
|
||||
|
||||
# Size of each "chunk" for get_iterator calls.
|
||||
|
|
Loading…
Reference in New Issue