#34533: OuterRef not resolved as part oh ORDER BY clause
-------------------------------------+-------------------------------------
     Reporter:  REGNIER Guillaume    |                    Owner:  nobody
         Type:  Bug                  |                   Status:  new
    Component:  Database layer       |                  Version:  3.2
  (models, ORM)                      |
     Severity:  Normal               |               Resolution:
     Keywords:  OuterRef, OrderBy    |             Triage Stage:  Accepted
    Has patch:  0                    |      Needs documentation:  0
  Needs tests:  0                    |  Patch needs improvement:  0
Easy pickings:  0                    |                    UI/UX:  0
-------------------------------------+-------------------------------------
Changes (by David Sanders):

 * stage:  Unreviewed => Accepted


Comment:

 Thanks 👍

 Just FYI this will work (note you must wrap 'pk' with an F):

 {{{
 MyModel.objects.annotate(foo=Subquery(MyModel.objects.annotate(order=F("pk")
 - OuterRef("pk")).order_by("order").values("pk")[:1]))
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/34533#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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/01070187e171b082-6f0ef0a1-f32b-449b-880b-e36f2997cb93-000000%40eu-central-1.amazonses.com.

Reply via email to