1
0
Fork 0

Take out some debugging output.

This commit is contained in:
Max Neunhoeffer 2014-08-11 14:30:13 +02:00
parent e065c1e507
commit 1b088ada7f
2 changed files with 0 additions and 9 deletions

View File

@ -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:

View File

@ -1426,9 +1426,6 @@ namespace triagens {
auto en = static_cast<CalculationNode const*>(getPlanNode());
std::unordered_set<Variable*> 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);