Use user_comparator when comparing against iterate_upper_bound.

Fixes #983.
main
Peter Mattis 9 years ago
parent 908100399c
commit 239aaf2fc0
  1. 2
      db/db_iter.cc

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

Loading…
Cancel
Save