Skip to content

Commit

Permalink
Update AppendVerticesExecutor.cpp
Browse files Browse the repository at this point in the history
fix conflict
  • Loading branch information
nevermore3 authored Sep 8, 2022
1 parent 57f048c commit 59a6c1f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/graph/executor/query/AppendVerticesExecutor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,11 @@ folly::Future<Status> AppendVerticesExecutor::appendVertices() {
return handleNullProp(av);
}

<<<<<<< HEAD
DataSet vertices = buildRequestDataSet(av);

StorageClient *storageClient = qctx()->getStorageClient();
=======
auto res = buildRequestDataSet(av);
NG_RETURN_IF_ERROR(res);
auto vertices = std::move(res).value();
>>>>>>> fc434bbc4 (add unwind & check vidType when executing not validate (#4456))
if (vertices.rows.empty()) {
return finish(ResultBuilder().value(Value(DataSet(av->colNames()))).build());
}
Expand Down

0 comments on commit 59a6c1f

Please sign in to comment.