Skip to content

Commit

Permalink
address some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
liuyu85cn committed Dec 27, 2021
1 parent 0dc277c commit 80672f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/storage/exec/MultiTagNode.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
namespace nebula {
namespace storage {

// MultiTagNode is a replace ment of HashJoinNode
// MultiTagNode is a replacement of HashJoinNode
// in execution of "go over"
// if Graph don't pass any Edge prop
class MultiTagNode : public IterateNode<VertexID> {
Expand Down
4 changes: 2 additions & 2 deletions src/storage/test/GetNeighborsTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ TEST(GetNeighborsTest, PropertyTest) {
auto resp = std::move(fut).get();

ASSERT_EQ(0, (*resp.result_ref()).failed_parts.size());
// vId, stat, player, serve, expr
// vId, stat, player, expr
size_t expectRowCount = 1;
size_t expectColumnCount = 4;
QueryTestUtils::checkResponse(
Expand Down Expand Up @@ -186,7 +186,7 @@ TEST(GetNeighborsTest, PropertyTest) {
auto resp = std::move(fut).get();

ASSERT_EQ(0, (*resp.result_ref()).failed_parts.size());
// vId, stat, player, serve, teammate, expr
// vId, stat, player, expr
size_t expectColumnCount = 4;
QueryTestUtils::checkResponse(
*resp.vertices_ref(), vertices, over, tags, edges, 1, expectColumnCount);
Expand Down

0 comments on commit 80672f4

Please sign in to comment.