Changes between Initial Version and Version 3 of Ticket #29337


Ignore:
Timestamp:
Apr 19, 2018, 11:43:37 AM (6 years ago)
Author:
Tim Graham
Comment:

PR

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29337

    • Property Owner changed from nobody to Adnan Umer
    • Property Status newassigned
    • Property Triage Stage UnreviewedReady for checkin
    • Property Has patch set
    • Property Summary __len__ & __bool__ support in RawQuerysetAdd __len__() & __bool__() to RawQueryset
    • Property Type New featureCleanup/optimization
  • Ticket #29337 – Description

    initial v3  
    1 `__len__` & `__bool__` are not implemented because of not having internal results caching in RawQueryset. https://code.djangoproject.com/ticket/28600 adds support for that.
    2 
    3 `__len__` & `__bool__` supports need to be added for `RawQueryset`
     1`__len__` & `__bool__` are not implemented because of not having internal results caching in RawQueryset (as discussed in #22349). #28600 adds support for results caching.
Back to Top