mirror of https://gitee.com/bigwinds/arangodb
Take out some debugging output.
This commit is contained in:
parent
e065c1e507
commit
1b088ada7f
|
@ -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:
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue