1
0
Fork 0
This commit is contained in:
Jan Steemann 2014-11-27 13:08:09 +01:00 committed by Frank Celler
parent 9717c04bed
commit aa37504e09
1 changed files with 3 additions and 3 deletions

View File

@ -86,7 +86,7 @@ function optimizerIndexesTestSuite () {
var plan = AQL_EXPLAIN(query).plan;
var indexes = 0;
var nodeTypes = plan.nodes.map(function(node) {
plan.nodes.map(function(node) {
if (node.type === "IndexRangeNode") {
++indexes;
}
@ -109,7 +109,7 @@ function optimizerIndexesTestSuite () {
var plan = AQL_EXPLAIN(query).plan;
var indexes = 0;
var nodeTypes = plan.nodes.map(function(node) {
plan.nodes.map(function(node) {
if (node.type === "IndexRangeNode") {
++indexes;
}
@ -132,7 +132,7 @@ function optimizerIndexesTestSuite () {
var plan = AQL_EXPLAIN(query).plan;
var indexes = 0;
var nodeTypes = plan.nodes.map(function(node) {
plan.nodes.map(function(node) {
if (node.type === "IndexRangeNode") {
++indexes;
}