Changes between Initial Version and Version 1 of Ticket #19726, comment 5


Ignore:
Timestamp:
Dec 14, 2015, 5:27:53 PM (8 years ago)
Author:
Shai Berger

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #19726, comment 5

    initial v1  
    11Reopening based on some discussion here: https://groups.google.com/forum/#!topic/django-developers/h5ok_KeXYW4
    22
    3 Basically, order_by needs to support __lookup syntax via F() support for __lookup syntax. That ticket is tracked here https://code.djangoproject.com/ticket/24747.
     3Basically, `order_by` needs to support `__lookup` syntax via `F()` support for `__lookup` syntax. That ticket is tracked here https://code.djangoproject.com/ticket/24747.
    44
    5 Once that is done, we can add a transform to boolean field that can be used for consistent ordering. A transform can be added now and used directly in the order_by:
     5Once that is done, we can add a transform to boolean field that can be used for consistent ordering. A transform can be added now and used directly in the `order_by`:
    66
    77{{{
     
    1212}}}
    1313
    14 But I don't think we should close this ticket until both the transform are created and order_by can leverage __lookup syntax.
     14But I don't think we should close this ticket until both the transform are created and `order_by` can leverage `__lookup` syntax.
Back to Top