mirror of https://gitee.com/bigwinds/arangodb
This commit is contained in:
parent
543faec428
commit
0935bb898e
|
@ -1,6 +1,10 @@
|
|||
v3.4.8 (XXXX-XX-XX)
|
||||
-------------------
|
||||
|
||||
* Issue #9798: Limit with offset results in an infinite query that can't be cancelled.
|
||||
|
||||
* Agents to remove callback entries when responded to with code 404.
|
||||
|
||||
* Make minimum timeout for synchronous replication configurable via parameter
|
||||
(--cluster.synchronous-replication-timeout-minimum) and increase default value
|
||||
to prevent dropping followers unnecessarily.
|
||||
|
@ -12,8 +16,6 @@ v3.4.8 (XXXX-XX-XX)
|
|||
dropped. The previous implementation retried (unsuccessfully in this case)
|
||||
for up to 2 hours, occupying one scheduler thread.
|
||||
|
||||
* Agents to remove callback entries when responded to with code 404.
|
||||
|
||||
* Show query string length and cacheability information in query explain output.
|
||||
|
||||
* Fixed internal issue #4378: fix bug in MoveShard::abort which causes a
|
||||
|
|
|
@ -796,6 +796,10 @@ std::pair<ExecutionState, size_t> IndexBlock::skipSome(size_t atMost) {
|
|||
// At least one of them is prepared and ready to read.
|
||||
TRI_ASSERT(!_indexesExhausted);
|
||||
_indexesExhausted = !skipIndex(atMost);
|
||||
|
||||
if (_indexesExhausted) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
size_t returned = _returned;
|
||||
|
|
Loading…
Reference in New Issue