Changes between Version 1 and Version 2 of Ticket #35751


Ignore:
Timestamp:
Sep 10, 2024, 1:36:44 PM (9 days ago)
Author:
Dennis Scheiba
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35751 – Description

    v1 v2  
    11Python 3.10 @ Django 5.1.1
    22
    3 Using a many to many relation for ordering (which is something you shouldn't do?) will affect the traversing when the object in question is accessed via a foreign key - the necessary left join for the ordering "spills" into the ORM results, yielding n (number of foreign key references) times m (number of many-to-many relations within the object) times n objects instead of just the actual n objects.
     3Using a many to many relation for ordering (which is something you shouldn't do?) will affect the traversing when the object in question is accessed via a foreign key - the necessary left join for the ordering "spills" into the ORM results, yielding n (number of foreign key references) times m (number of many-to-many relations within the object) objects instead of just the actual n objects referencing the foreign key.
    44
    55If you comment out the ordering the ORM behaves as expected.
Back to Top