Changeset 8783
- Timestamp:
- 08/31/08 21:43:55 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/db/models/sql/query.py
r8644 r8783 659 659 660 660 # Must use left outer joins for nullable fields. 661 must_promote = False 661 662 for join in joins: 662 self.promote_alias(join)663 must_promote = self.promote_alias(join, must_promote) 663 664 664 665 # If we get to this point and the field is a relation to another model,
