#24923: Aggregates in order_by should error out nicely
-------------------------------------+-------------------------------------
               Reporter:  akaariai   |          Owner:  nobody
                   Type:             |         Status:  new
  Cleanup/optimization               |
              Component:  Database   |        Version:  1.8
  layer (models, ORM)                |
               Severity:  Normal     |       Keywords:
           Triage Stage:  Accepted   |      Has patch:  0
    Needs documentation:  0          |    Needs tests:  0
Patch needs improvement:  0          |  Easy pickings:  0
                  UI/UX:  0          |
-------------------------------------+-------------------------------------
 Expressions are allowed in order_by, but aggregates don't currently work.
 Making them work would cause too much trouble when taking in account that
 you can already do
 {{{
 qs.annotate(agg=Sum('foo')).order_by('agg')
 }}}
 as opposed to
 {{{
 qs.order_by(Sum('foo'))
 }}}

--
Ticket URL: <https://code.djangoproject.com/ticket/24923>
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 [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/051.72c0d02b9618d4104370a209c0bb5e07%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to