This commit is contained in:
Andrew Noyes 2020-05-09 03:12:55 +00:00
parent c9205a5e1e
commit 4cbf7b0fc0
1 changed files with 1 additions and 1 deletions

View File

@ -567,7 +567,7 @@ private:
for (const auto& impl : self->impls) {
auto implRange = impl->getKeyRange();
auto begin = std::max(kr.begin, implRange.begin);
auto end = std::min(kr.end, implrRange.end);
auto end = std::min(kr.end, implRange.end);
if (begin < end) {
futures.push_back(impl->getRange(ryw, KeyRangeRef(begin, end)));
}