1
0
Fork 0

Adaption of Indexes Ranges test

This commit is contained in:
Michael Hackstein 2015-10-14 11:21:08 +02:00
parent 31cf31f7b7
commit cc96b6e426
1 changed files with 2 additions and 2 deletions

View File

@ -213,9 +213,9 @@ function optimizerRuleUseIndexRangeTester () {
" RETURN {A:A, B:B, C:C, K:k}";
var result = AQL_EXPLAIN(query, { }, paramEnabledAllPlans);
assertTrue(result.plans.length === 16, query);
assertTrue(result.plans.length === 1, query);
result = AQL_EXPLAIN(query, { }, paramAllAllPlans);
assertTrue(result.plans.length === 16, query);
assertTrue(result.plans.length === 1, query);
}
};