mirror of https://gitee.com/bigwinds/arangodb
changed wrong comments
This commit is contained in:
parent
b10ae65d58
commit
37295fb2b1
|
@ -135,10 +135,7 @@ int triagens::aql::moveCalculationsUpRule (Optimizer* opt,
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto neededVars = n->getVariablesUsedHere();
|
auto const neededVars = n->getVariablesUsedHere();
|
||||||
// sort the list of variables that the expression needs as its input
|
|
||||||
// (sorting is needed for intersection later)
|
|
||||||
std::sort(neededVars.begin(), neededVars.end(), &Variable::Comparator);
|
|
||||||
|
|
||||||
std::vector<ExecutionNode*> stack;
|
std::vector<ExecutionNode*> stack;
|
||||||
for (auto dep : n->getDependencies()) {
|
for (auto dep : n->getDependencies()) {
|
||||||
|
@ -260,7 +257,7 @@ int triagens::aql::moveFiltersUpRule (Optimizer* opt,
|
||||||
|
|
||||||
// first, unlink the filter from the plan
|
// first, unlink the filter from the plan
|
||||||
plan->unlinkNode(n);
|
plan->unlinkNode(n);
|
||||||
// and re-insert into before the current node
|
// and re-insert into plan in front of the current node
|
||||||
plan->insertDependency(current, n);
|
plan->insertDependency(current, n);
|
||||||
modified = true;
|
modified = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue