Changes between Initial Version and Version 1 of Ticket #33598


Ignore:
Timestamp:
Mar 23, 2022, 6:23:42 PM (2 years ago)
Author:
lind-marcus
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33598 – Description

    initial v1  
    2828}}}
    2929
    30 I noticed that when using multiple `FilteredRelation` with the same relation (`myrelation__nested`) it actually just generates a single SQL statement 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`.
     30I 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`.
    3131
    3232Is this intended behavior or should I be able to do the thing above?
Back to Top