Changes between Version 12 and Version 13 of Ticket #35309
- Timestamp:
- Mar 16, 2024, 4:30:37 PM (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35309 – Description
v12 v13 26 26 27 27 This property holds true for all the single valued relationships that the ORM supports (backward and forward 1:1 and forward 1:M) which allows the prefetching to elide any predefined ordering safely to avoid an unnecessary and possibly expensive ordering defined for the related model queryset. 28 Currently the prefetch of authors will use the order by and add useless chargeon the DB server.28 Currently the prefetch of authors will use the order by and add useless load on the DB server. 29 29 It would be useful to remove this order by. 30 30 #ClimateChangeBrake