Ticket #593: match_operator_doc.diff
File match_operator_doc.diff, 841 bytes (added by , 19 years ago) |
---|
-
db-api.txt
190 190 day For date/datetime fields, exact day match. 191 191 isnull True/False; does is IF NULL/IF NOT NULL lookup: 192 192 ``polls.get_list(expire_date__isnull=True)``. 193 match Performs a case-insensitive boolean full-text search. Like 194 "contains," but significantly faster thanks to full-text 195 indexing. (Note: MySQL only. Requires direct manipulation of 196 the database to add the full-text index at present. Django 197 development version only.) 193 198 =========== ============================================================== 194 199 195 200 Multiple lookups are allowed, of course, and are translated as "AND"s::