Changes between Initial Version and Version 3 of Ticket #29337
- Timestamp:
- Apr 19, 2018, 11:43:37 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29337
- Property Owner changed from to
- Property Status new → assigned
- Property Triage Stage Unreviewed → Ready for checkin
- Property Has patch set
- Property Summary __len__ & __bool__ support in RawQueryset → Add __len__() & __bool__() to RawQueryset
- Property Type New feature → Cleanup/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.