1
0
Fork 0

formatting

This commit is contained in:
jsteemann 2016-09-09 09:29:35 +02:00
parent 01e445a626
commit 331c4e34ae
1 changed files with 6 additions and 4 deletions

View File

@ -24,9 +24,11 @@ devel
* added Optimizer Rule for other indexes in Traversals * added Optimizer Rule for other indexes in Traversals
this allows AQL traversals to use other indexes than the edge index. this allows AQL traversals to use other indexes than the edge index.
So traversals with filters on edges can now make use of more specific So traversals with filters on edges can now make use of more specific
indexes. E.g.: indexes, e.g.
FOR v, e, p IN 2 OUTBOUND @start @@edge FILTER p.edges[0].foo == "bar" FOR v, e, p IN 2 OUTBOUND @start @@edge FILTER p.edges[0].foo == "bar"
Will prefer an Hash Index on [_from, foo] above the EdgeIndex.
will prefer a Hash Index on [_from, foo] above the EdgeIndex.
* fixed epoch computation in hybrid logical clock * fixed epoch computation in hybrid logical clock