Changeset 7088
- Timestamp:
- 02/04/08 06:05:01 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/queryset-refactor/django/db/models/sql/where.py
r7087 r7088 126 126 params) 127 127 elif lookup_type in 'search': 128 return (connection.ops.fullte st_search_sql(field_sql), params)128 return (connection.ops.fulltext_search_sql(field_sql), params) 129 129 elif lookup_type in ('regex', 'iregex'): 130 130 return connection.ops.regex_lookup % (field_sql, cast_sql), params
