~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

Merge bzr.dev 4187, and revert the change to fix refcycle issues.

I apparently didn't run the smart fetch tests. Which show that we access inv+chk pages
as a fulltext, and then insert the stream, which expects to get the block as a compressed
block. :(.
Need to rethink how to do it, possibly with weakrefs.


This also brings in CommitBuilder.record_iter_changes() and the updates to btree_index
and backing indices.

Show diffs side-by-side

added added

removed removed

Lines of Context:
954
954
    # Lookup all possible text keys to determine which ones actually modified
955
955
    # the file.
956
956
    text_keys = [(file_id, rev_id) for rev_id, revno, depth in view_revisions]
 
957
    next_keys = None
957
958
    # Looking up keys in batches of 1000 can cut the time in half, as well as
958
959
    # memory consumption. GraphIndex *does* like to look for a few keys in
959
960
    # parallel, it just doesn't like looking for *lots* of keys in parallel.