• Anssi Kääriäinen's avatar
    Fixed #16715 -- Fixed join promotion logic for nested nullable FKs · 01b9c3d5
    Anssi Kääriäinen yazdı
    The joins for nested nullable foreign keys were often created as INNER
    when they should have been OUTER joins. The reason was that only the
    first join in the chain was promoted correctly. There were also issues
    with select_related etc.
    
    The basic structure for this problem was:
      A -[nullable]-> B -[nonnull]-> C
    
    And the basic problem was that the A->B join was correctly LOUTER,
    the B->C join not.
    
    The major change taken in this patch is that now if we promote a join
    A->B, we will automatically promote joins B->X for all X in the query.
    Also, we now make sure there aren't ever join chains like:
       a LOUTER b INNER c
    If the a -> b needs to be LOUTER, then the INNER at the end of the
    chain will cancel the LOUTER join and we have a broken query.
    
    Sebastian reported this problem and did also major portions of the
    patch.
    01b9c3d5
Adı
Son kayıt (commit)
Son güncelleme
..
__init__.py Loading commit data...
models.py Loading commit data...
tests.py Loading commit data...