Skip to content

Commit

Permalink
Disable update row redundantly test for in mem mode
Browse files Browse the repository at this point in the history
  • Loading branch information
royi-luo committed Feb 14, 2025
1 parent 8a29797 commit 2c95729
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/storage/node_update_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ TEST_F(NodeUpdateTest, UpdateSameRow) {
}

TEST_F(NodeUpdateTest, UpdateSameRowRedundtanly) {
if (inMemMode) {
GTEST_SKIP();
}
ASSERT_TRUE(
conn->query("CREATE NODE TABLE test (id SERIAL PRIMARY KEY, name STRING, prop STRING);")
->isSuccess());
Expand Down

0 comments on commit 2c95729

Please sign in to comment.