Skip to content

Commit 8fa835e

Browse files
authored
Removed test that is no longer needed
1 parent aa9c955 commit 8fa835e

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

ut/low_cardinality_nullable_tests.cpp

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -131,20 +131,3 @@ TEST(LowCardinalityOfNullable, InsertAndQueryEmpty) {
131131
});
132132
}
133133

134-
TEST(LowCardinalityOfNullable, ThrowOnBackwardsCompatibleLCColumn) {
135-
auto column = buildTestColumn({}, {});
136-
137-
Block block;
138-
block.AppendColumn("words", column);
139-
140-
Client client(ClientOptions(localHostEndpoint)
141-
.SetPingBeforeQuery(true));
142-
143-
createTable(client);
144-
145-
EXPECT_THROW(client.Insert("lc_of_nullable", block), UnimplementedError);
146-
147-
client.Select("SELECT * FROM lc_of_nullable", [&](const Block& bl) {
148-
ASSERT_EQ(bl.GetRowCount(), 0u);
149-
});
150-
}

0 commit comments

Comments
 (0)