Ticket #10733: deferred_related_fields.diff
File deferred_related_fields.diff, 522 bytes (added by , 16 years ago) |
---|
-
django/db/models/query.py
963 963 else: 964 964 next = None 965 965 cached_row = get_cached_row(f.rel.to, row, index_end, max_depth, 966 cur_depth+1, next )966 cur_depth+1, next, only_load=only_load) 967 967 if cached_row: 968 968 rel_obj, index_end = cached_row 969 969 if obj is not None: