#24986: Selecting distinct on lower() function throws AttributeError("'Func' 
object
has no attribute 'column'")
-------------------------------------+-------------------------------------
     Reporter:  wbar                 |                    Owner:  nobody
         Type:  Bug                  |                   Status:  new
    Component:  Database layer       |                  Version:  master
  (models, ORM)                      |
     Severity:  Normal               |               Resolution:
     Keywords:  F(), ORM, distinct   |             Triage Stage:  Accepted
    Has patch:  0                    |      Needs documentation:  0
  Needs tests:  0                    |  Patch needs improvement:  0
Easy pickings:  0                    |                    UI/UX:  0
-------------------------------------+-------------------------------------

Comment (by shaib):

 I believe the OP was only using `something` to point out that `name_lower`
 doesn't work in spite of being given as an option in the error message.

 On a separate note: You should be able to get the query you described
 initially with
 {{{
 Author.objects.annotate(
     name_lower=Func(F('name'), function='lower')
 ).values('name_lower').distinct()
 }}}
 or something similar.

--
Ticket URL: <https://code.djangoproject.com/ticket/24986#comment:7>
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/062.9453449c76f44703269e95c618576b84%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to