File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -185,18 +185,18 @@ auto TraversalExecutor::doOutput(OutputAqlItemRow& output) -> void {
185
185
if (_infos.useVertexOutput ()) {
186
186
AqlValue vertex = _traverser.lastVertexToAqlValue ();
187
187
AqlValueGuard guard{vertex, true };
188
- output.cloneValueInto (_infos.vertexRegister (), _inputRow, vertex );
188
+ output.moveValueInto (_infos.vertexRegister (), _inputRow, guard );
189
189
}
190
190
if (_infos.useEdgeOutput ()) {
191
191
AqlValue edge = _traverser.lastEdgeToAqlValue ();
192
192
AqlValueGuard guard{edge, true };
193
- output.cloneValueInto (_infos.edgeRegister (), _inputRow, edge );
193
+ output.moveValueInto (_infos.edgeRegister (), _inputRow, guard );
194
194
}
195
195
if (_infos.usePathOutput ()) {
196
196
transaction::BuilderLeaser tmp (_traverser.trx ());
197
197
AqlValue path = _traverser.pathToAqlValue (*tmp.builder ());
198
198
AqlValueGuard guard{path, true };
199
- output.cloneValueInto (_infos.pathRegister (), _inputRow, path );
199
+ output.moveValueInto (_infos.pathRegister (), _inputRow, guard );
200
200
}
201
201
output.advanceRow ();
202
202
}
You can’t perform that action at this time.
0 commit comments