mirror of https://gitee.com/bigwinds/arangodb
Minor bugfix
This commit is contained in:
parent
b94755c61e
commit
dda0e8cff3
|
@ -252,10 +252,10 @@ bool substituteClusterSingleDocumentOperationsIndex(Optimizer* opt, ExecutionPla
|
|||
}
|
||||
}
|
||||
|
||||
ExecutionNode* singleOperationNode = plan->registerNode(new SingleRemoteOperationNode(
|
||||
ExecutionNode* singleOperationNode = plan->createNode<SingleRemoteOperationNode>(
|
||||
plan, plan->nextId(), parentType, true, key, mod->collection(),
|
||||
mod->getOptions(), update, indexNode->outVariable(),
|
||||
mod->getOutVariableOld(), mod->getOutVariableNew()));
|
||||
mod->getOutVariableOld(), mod->getOutVariableNew());
|
||||
|
||||
::replaceNode(plan, mod, singleOperationNode);
|
||||
plan->unlinkNode(indexNode);
|
||||
|
|
Loading…
Reference in New Issue