Changes between Initial Version and Version 1 of Ticket #33598
- Timestamp:
- Mar 23, 2022, 6:23:42 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33598 – Description
initial v1 28 28 }}} 29 29 30 I noticed that when using multiple `FilteredRelation` with the same relation (`myrelation__nested`) it actually just generates a single SQL statementand ignores the other. So in this case if I do `print(str(qs.query))` I would only see a join for `relation_zone`. Not for `relation_all`.30 I noticed that when using multiple `FilteredRelation` with the same relation (`myrelation__nested`) it actually just generates a single SQL JOIN (if inspecting the raw SQL) and ignores the other. So in this case if I do `print(str(qs.query))` I would only see a join for `relation_zone`. Not for `relation_all`. 31 31 32 32 Is this intended behavior or should I be able to do the thing above?