Merge pull request #984 from petermattis/pmattis/comparator-iterate-upper-bound

Use user_comparator when comparing against iterate_upper_bound.
main
Igor Canadi 8 years ago
commit 3dc3d1c144
  1. 2
      db/db_iter.cc

@ -275,7 +275,7 @@ void DBIter::FindNextUserEntryInternal(bool skipping) {
if (ParseKey(&ikey)) {
if (iterate_upper_bound_ != nullptr &&
ikey.user_key.compare(*iterate_upper_bound_) >= 0) {
user_comparator_->Compare(ikey.user_key, *iterate_upper_bound_) >= 0) {
break;
}

Loading…
Cancel
Save