* ui_ux: => 0
* easy: => 0
Comment:
Note that full-text search will work in backends other than MySQL if they
implement `fulltext_search_sql`, which is the topic of #3254.
--
Ticket URL: <https://code.djangoproject.com/ticket/12033#comment:3>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* status: new => assigned
* owner: nobody => szczav
--
Ticket URL: <https://code.djangoproject.com/ticket/12033#comment:4>
* status: assigned => new
* owner: szczav =>
--
Ticket URL: <https://code.djangoproject.com/ticket/12033#comment:5>
* status: new => closed
* resolution: => wontfix
Comment:
The MySQL specific `__search` lookup and its `@` search field reference
have been deprecated.
It's now possible to override the `ModelAdmin.get_search_results()` to
provide backend agnostic FTS.
--
Ticket URL: <https://code.djangoproject.com/ticket/12033#comment:6>
Comment (by Simon Charette):
Actually the `@` -> `__search` conversion is still present in
`get_search_result()` so could implement a `SearchLookup` that you
register to both `CharField` and `TextField` and you could implement it on
SQLite.
--
Ticket URL: <https://code.djangoproject.com/ticket/12033#comment:7>