Changes between Initial Version and Version 3 of Ticket #29337
- Timestamp:
- 04/19/18 16:43:37 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29337
-
Property
Status
changed from
new
toassigned
-
Property
Summary
changed from
__len__ & __bool__ support in RawQueryset
toAdd __len__() & __bool__() to RawQueryset
- Property Owner changed from nobody to Adnan Umer
- Property Has patch set
-
Property
Type
changed from
New feature
toCleanup/optimization
-
Property
Triage Stage
changed from
Unreviewed
toReady for checkin
-
Property
Status
changed from
-
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.