Skip to content

Commit

Permalink
Merge branch 'cherry-pick-3.2.1-0907' of github.com:vesoft-inc/nebula…
Browse files Browse the repository at this point in the history
… into cherry-pick-3.2.1-0907
  • Loading branch information
Sophie-Xie committed Sep 8, 2022
2 parents 9fc6244 + 8e35a86 commit fbbbe36
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/graph/executor/query/AppendVerticesExecutor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,10 @@ 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 fbbbe36

Please sign in to comment.