1
0
Fork 0

updated CHANGELOG

This commit is contained in:
Jan Steemann 2015-01-22 15:32:24 +01:00
parent 70fba85a67
commit 1ea695c6a2
1 changed files with 18 additions and 0 deletions

View File

@ -20,6 +20,24 @@ v2.5.0 (XXXX-XX-XX)
behavior.
v2.4.2 (2015-XX-XX)
-------------------
* enable use of indexes for certain AQL conditions with non-equality predicates, in
case the condition(s) also refer to indexed attributes
The following queries will now be able to use indexes:
FILTER a.indexed == ... && a.indexed != ...
FILTER a.indexed == ... && a.nonIndexed != ...
FILTER a.indexed == ... && ! (a.indexed == ...)
FILTER a.indexed == ... && ! (a.nonIndexed == ...)
FILTER a.indexed == ... && ! (a.indexed != ...)
FILTER a.indexed == ... && ! (a.nonIndexed != ...)
FILTER (a.indexed == ... && a.nonIndexed == ...) || (a.indexed == ... && a.nonIndexed == ...)
FILTER (a.indexed == ... && a.nonIndexed != ...) || (a.indexed == ... && a.nonIndexed != ...)
v2.4.1 (2015-01-19)
-------------------