mirror of https://gitee.com/bigwinds/arangodb
Implement subquery block - these parameters also should be enabled.
This commit is contained in:
parent
d30914afb2
commit
8eb3cfeca3
|
@ -70,9 +70,9 @@ void ExecutionBlock::walk (WalkerWorker* worker) {
|
|||
// Now handle a subquery:
|
||||
if (_exeNode->getType() == ExecutionNode::SUBQUERY) {
|
||||
auto p = static_cast<SubqueryBlock*>(this);
|
||||
if (worker->enterSubquery(this, nullptr)) { ; // p->_subquery
|
||||
if (worker->enterSubquery(this, p->getSubquery())) { ;
|
||||
p->getSubquery()->walk(worker);
|
||||
worker->leaveSubquery(this, nullptr); // p->_subquery
|
||||
worker->leaveSubquery(this, p->getSubquery());
|
||||
}
|
||||
}
|
||||
worker->after(this);
|
||||
|
|
Loading…
Reference in New Issue