From 1b088ada7f95aa3e93ff86ad042cd83a75a2d910 Mon Sep 17 00:00:00 2001 From: Max Neunhoeffer Date: Mon, 11 Aug 2014 14:30:13 +0200 Subject: [PATCH] Take out some debugging output. --- arangod/Aql/ExecutionBlock.cpp | 6 ------ arangod/Aql/ExecutionBlock.h | 3 --- 2 files changed, 9 deletions(-) diff --git a/arangod/Aql/ExecutionBlock.cpp b/arangod/Aql/ExecutionBlock.cpp index fe88a70a24..44cf336bb2 100644 --- a/arangod/Aql/ExecutionBlock.cpp +++ b/arangod/Aql/ExecutionBlock.cpp @@ -114,12 +114,6 @@ void ExecutionBlock::staticAnalysis (ExecutionBlock* super) { sq->getSubquery()->staticAnalysis(s); } v->reset(); - // Now print the result: - for (auto it : _varOverview->varInfo) { - std::cout << "Variable ID:" << it.first << " RegisterId:" - << it.second.registerId << " Depth:" << it.second.depth - << std::endl; - } } // Local Variables: diff --git a/arangod/Aql/ExecutionBlock.h b/arangod/Aql/ExecutionBlock.h index 93aa20f282..553d9b1783 100644 --- a/arangod/Aql/ExecutionBlock.h +++ b/arangod/Aql/ExecutionBlock.h @@ -1426,9 +1426,6 @@ namespace triagens { auto en = static_cast(getPlanNode()); std::unordered_set inVars = _expression->variables(); - for (auto it : inVars) { - std::cout << it->name << ":" << it->id << std::endl; - } for (auto it = inVars.begin(); it != inVars.end(); ++it) { _inVars.push_back(*it);