1
0
Fork 0

Take out some debugging output.

This commit is contained in:
Max Neunhoeffer 2014-10-29 15:42:03 +01:00
parent bfce170cae
commit b0e08bd8eb
1 changed files with 3 additions and 2 deletions

View File

@ -225,7 +225,8 @@ int Optimizer::createPlans (ExecutionPlan* plan,
estimatePlans();
sortPlans();
/*
#if 0
// Only for debugging:
std::cout << "Optimisation ends with " << _plans.size() << " plans."
<< std::endl;
for (auto p : _plans.list) {
@ -233,7 +234,7 @@ int Optimizer::createPlans (ExecutionPlan* plan,
std::cout << "costing: " << p->getCost() << std::endl;
std::cout << std::endl;
}
*/
#endif
return TRI_ERROR_NO_ERROR;
}