Django

Code

Changeset 6869

Show
Ignore:
Timestamp:
12/03/07 15:23:15 (9 months ago)
Author:
mtredinnick
Message:

queryset-refactor: Added a FIXME for something I just remembered.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/queryset-refactor/django/db/models/sql/query.py

    r6867 r6869  
    739739                if join == table and self.alias_map[join][ALIAS_REFCOUNT] > 1: 
    740740                    continue 
     741                # FIXME: Don't have to promote here (and in the other places in 
     742                # this block) if the join isn't nullable. So I should be 
     743                # checking this before promoting (avoiding left outer joins is 
     744                # important). 
    741745                self.promote_alias(join) 
    742746                if table != join: