Changes between Initial Version and Version 1 of Ticket #26192


Ignore:
Timestamp:
Feb 9, 2016, 8:18:06 AM (8 years ago)
Author:
Sven R. Kunze
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #26192 – Description

    initial v1  
    11{{{
    2 MyModel.objects.annotate(my_column=Value(0)).order_by('my_column').values_list('id')
     2MyModel.objects.annotate(my_column=Value('asdf')).order_by('my_column').values_list('id')
    33
    44ProgrammingError: non-integer constant in ORDER BY
Back to Top