Skip to content

Commit

Permalink
fix NULL value test
Browse files Browse the repository at this point in the history
  • Loading branch information
dey4ss committed Apr 20, 2023
1 parent 79fd7a0 commit 504eccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/storage/value_segment_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ TEST_F(StorageValueSegmentTest, NullValueHandling) {
int_value_segment.append(NULL_VALUE);

EXPECT_EQ(int_value_segment[0], AllTypeVariant{1});
EXPECT_EQ(int_value_segment[1], NULL_VALUE);
EXPECT_TRUE(variant_is_null(int_value_segment[1]));

EXPECT_FALSE(int_value_segment.is_null(0));
EXPECT_TRUE(int_value_segment.is_null(1));
Expand Down

0 comments on commit 504eccf

Please sign in to comment.