Changes between Initial Version and Version 1 of Ticket #34940, comment 3


Ignore:
Timestamp:
Nov 3, 2023, 1:18:24 AM (11 months ago)
Author:
David Sanders

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34940, comment 3

    initial v1  
    1111
    1212qs = (
    13     Foo.objects.annotate(ab=RawSQL("a, b", params=[]))
     13    Foo.objects.annotate(ab=RawSQL("(a, b)", params=[]))
    1414    .filter(ab__in=[(1, 1), (1, 3)])
    1515    .values("a", "b", "ab")
Back to Top