Skip to content
Snippets Groups Projects
Unverified Commit 08aa6fff authored by laura-ding's avatar laura-ding Committed by GitHub
Browse files

Fix GetNeighborsExecutor empty input result (#549)


* fix GetNeighborsExecutor empty input result

* address comment

Co-authored-by: default avatarcpw <13495049+CPWstatic@users.noreply.github.com>
parent 5713b46a
No related branches found
No related tags found
No related merge requests found
......@@ -68,8 +68,8 @@ Status GetNeighborsExecutor::buildRequestDataSet() {
folly::Future<Status> GetNeighborsExecutor::getNeighbors() {
if (reqDs_.rows.empty()) {
LOG(INFO) << "Empty input.";
DataSet emptyResult;
VLOG(1) << "Empty input.";
List emptyResult;
return finish(ResultBuilder()
.value(Value(std::move(emptyResult)))
.iter(Iterator::Kind::kGetNeighbors)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment