Skip to content

Commit fca9c94

Browse files
committed
Add empty arrays to LC(Array) existing unit test
1 parent 68094f3 commit fca9c94

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ut/array_of_low_cardinality_tests.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ TEST(ArrayOfLowCardinality, InsertAndQuery) {
7272

7373
const auto testData = std::vector<std::vector<std::string>> {
7474
{ "aa", "bb" },
75-
{ "cc" }
75+
{},
76+
{ "cc" },
77+
{}
7678
};
7779

7880
auto column = buildTestColumn(testData);
@@ -96,4 +98,4 @@ TEST(ArrayOfLowCardinality, InsertAndQuery) {
9698
}
9799
}
98100
);
99-
}
101+
}

0 commit comments

Comments
 (0)