Skip to content

Commit

Permalink
fix fetch edges tostring (#3613)
Browse files Browse the repository at this point in the history
Co-authored-by: Sophie <84560950+Sophie-Xie@users.noreply.github.com>
Co-authored-by: Yichen Wang <18348405+Aiee@users.noreply.github.com>
  • Loading branch information
3 people committed Jan 10, 2022
1 parent 252ca40 commit 9f09d15
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/parser/TraverseSentences.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,10 @@ std::string FetchEdgesSentence::toString() const {
} else {
buf += edgeKeys_->toString();
}
if (yieldClause_ != nullptr) {
buf += " ";
buf += yieldClause_->toString();
}
return buf;
}

Expand Down

0 comments on commit 9f09d15

Please sign in to comment.