1
0
Fork 0

Added the fix 0d3a095736 to changelog.

This commit is contained in:
Michael Hackstein 2015-09-21 13:21:55 +02:00
parent 0d3a095736
commit ba5159c897
1 changed files with 11 additions and 0 deletions

View File

@ -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.