1. 02 Mar, 2014 1 commit
  2. 27 Feb, 2014 1 commit
  3. 31 Jan, 2014 4 commits
  4. 30 Jan, 2014 32 commits
  5. 29 Jan, 2014 2 commits
    • Two-phase index merging · 0972c592
      When three-way merging indexes, we previously changed each path
      as we read them, which would lead to us adding an index entry for
      'foo', then removing an index entry for 'foo/file'.  With the new
      index requirements, this is not allowed.  Removing entries in the
      merged index, then adding them, resolves this.  In the previous
      example, we now remove 'foo/file' before adding 'foo'.
      Edward Thomson committed
    • Give index_isrch the same semantics as index_srch · b747eb14
      In case insensitive index mode, we would stop at a prefixed entry,
      treating the provided search key length as a substring, not the
      length of the string to match.
      Edward Thomson committed