mirror of https://gitee.com/bigwinds/arangodb
Fixed iterator
This commit is contained in:
parent
01e27b803f
commit
c31d4c1590
|
@ -97,6 +97,8 @@ bool MultiIndexIterator::next(TokenCallback const& callback, size_t limit) {
|
|||
if (_currentIdx >= _iterators.size()) {
|
||||
_current = nullptr;
|
||||
return false;
|
||||
} else {
|
||||
_current = _iterators.at(_currentIdx);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue