django/tests/filtered_relation
Simon Charette d660cee5bc Fixed #33766 -- Resolved FilteredRelation.condition at referencing time.
The previous implementation resolved condition at Join compilation time
which required introducing a specialized expression resolving mode to
alter the join reuse logic solely during that phase.

FilteredRelation.condition is now resolved when the relation is first
referenced which maintains the existing behavior while allowing the
removal of the specialized resolving mode and address an issue where
conditions couldn't spawn new joins.
2023-04-24 08:32:44 +02:00
..
__init__.py Fixed #27332 -- Added FilteredRelation API for conditional join (ON clause) support. 2017-09-22 11:53:17 -04:00
models.py Refs #33476 -- Reformatted code with Black. 2022-02-07 20:37:05 +01:00
tests.py Fixed #33766 -- Resolved FilteredRelation.condition at referencing time. 2023-04-24 08:32:44 +02:00