mirror of https://gitee.com/bigwinds/arangodb
Added the fix 0d3a095736
to changelog.
This commit is contained in:
parent
0d3a095736
commit
ba5159c897
11
CHANGELOG
11
CHANGELOG
|
@ -438,6 +438,17 @@ v2.7.0-rc1 (XXXX-XX-XX)
|
|||
v2.6.8 (XXXX-XX-XX)
|
||||
-------------------
|
||||
|
||||
* fixed failing AQL skiplist, sort and limit combination
|
||||
|
||||
When using a Skiplist index on an attribute (say "a") and then using sort
|
||||
and skip on this attribute caused the result to be empty e.g.:
|
||||
|
||||
require("internal").db.test.ensureSkiplist("a");
|
||||
require("internal").db._query("FOR x IN test SORT x.a LIMIT 10, 10");
|
||||
|
||||
Was always empty no matter how many documents are stored in test.
|
||||
This is now fixed.
|
||||
|
||||
* ARM only:
|
||||
|
||||
The ArangoDB packages for ARM require the kernel to allow unaligned memory access.
|
||||
|
|
Loading…
Reference in New Issue