diff --git a/js/server/modules/org/arangodb/aql-helper.js b/js/server/modules/org/arangodb/aql-helper.js index 99563f1dbb..6ddc668a9d 100644 --- a/js/server/modules/org/arangodb/aql-helper.js +++ b/js/server/modules/org/arangodb/aql-helper.js @@ -442,6 +442,7 @@ function getQueryMultiplePlansAndExecutions (query, bindVars, testObject, debug) delete results[i].stats.scannedFull; delete results[i].stats.scannedIndex; delete results[i].stats.filtered; + delete results[i].stats.executionTime; if (debug) { require("internal").print("\n" + i + " DONE\n"); diff --git a/js/server/tests/aql-modify-cluster.js b/js/server/tests/aql-modify-cluster.js index f2e99ef6c3..8906a89a04 100644 --- a/js/server/tests/aql-modify-cluster.js +++ b/js/server/tests/aql-modify-cluster.js @@ -41,6 +41,7 @@ var sanitizeStats = function (stats) { delete stats.scannedFull; delete stats.scannedIndex; delete stats.filtered; + delete stats.executionTime; return stats; }; diff --git a/js/server/tests/aql-modify-noncluster.js b/js/server/tests/aql-modify-noncluster.js index ace401cb75..0ac77c3d0c 100644 --- a/js/server/tests/aql-modify-noncluster.js +++ b/js/server/tests/aql-modify-noncluster.js @@ -45,6 +45,7 @@ var sanitizeStats = function (stats) { delete stats.scannedFull; delete stats.scannedIndex; delete stats.filtered; + delete stats.executionTime; return stats; };