#28852: Search in admin can't use index when several fields are in 
`search_fields`
-------------------------------------+-------------------------------------
     Reporter:  Jonathan Sundqvist   |                    Owner:  nobody
         Type:                       |                   Status:  new
  Cleanup/optimization               |
    Component:  contrib.admin        |                  Version:  master
     Severity:  Normal               |               Resolution:
     Keywords:  search               |             Triage Stage:
                                     |  Unreviewed
    Has patch:  0                    |      Needs documentation:  0
  Needs tests:  0                    |  Patch needs improvement:  0
Easy pickings:  0                    |                    UI/UX:  0
-------------------------------------+-------------------------------------
Changes (by Tomer Chachamu):

 * cc: Tomer Chachamu (added)


Comment:

 I've also had to customise {{{ModelAdmin.get_search_results}}} because of
 its not-so-smartness (I will probably open a separate card for it).

 We've already moved away from the symbols for lookups, see
 
https://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.search_fields
 and previous discussion https://code.djangoproject.com/ticket/26184.

 What do you think of overriding {{{ModelAdmin.get_queryset}}} to use
 {{{.annotate(sv=SearchVector(...))}}} and then specifying
 {{{'sv__search'}}} in the {{{ModelAdmin.search_fields}}}? It looks like
 that won't work with the current implementation, as {{{search_fields}}}
 must be model fields and not queryset annotations.

-- 
Ticket URL: <https://code.djangoproject.com/ticket/28852#comment:1>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/068.6c852d70d4691e669b8519bccdf4a84b%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to