diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-02-04 12:05:01 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-02-04 12:05:01 +0000 |
| commit | 04a55d663fdcf91a73a7a31d81a54518e6355f74 (patch) | |
| tree | c8bb294a493ea95d62ed72e4c6e0124c4b879811 | |
| parent | 5df5551d076e40ddf8f31205116f70c5e75ca240 (diff) | |
queryset-refactor: Fixed a typo that's been hiding out for a few months.
git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@7088 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/db/models/sql/where.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/sql/where.py b/django/db/models/sql/where.py index 620b140be8..16cfdb21b0 100644 --- a/django/db/models/sql/where.py +++ b/django/db/models/sql/where.py @@ -125,7 +125,7 @@ class WhereNode(tree.Node): return ('%s IS %sNULL' % (field_sql, (not value and 'NOT ' or '')), params) elif lookup_type in 'search': - return (connection.ops.fulltest_search_sql(field_sql), params) + return (connection.ops.fulltext_search_sql(field_sql), params) elif lookup_type in ('regex', 'iregex'): return connection.ops.regex_lookup % (field_sql, cast_sql), params |
