Ticket #10733: deferred_related_fields.diff

File deferred_related_fields.diff, 522 bytes (added by Andy Durdin, 15 years ago)

Initial patch

  • django/db/models/query.py

     
    963963        else:
    964964            next = None
    965965        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)
    967967        if cached_row:
    968968            rel_obj, index_end = cached_row
    969969            if obj is not None:
Back to Top