From 8fa835e4c2f6351d0b07fbefac37fe13f75b8dd4 Mon Sep 17 00:00:00 2001 From: Vasily Nemkov Date: Sun, 25 Feb 2024 10:00:02 +0100 Subject: [PATCH] Removed test that is no longer needed --- ut/low_cardinality_nullable_tests.cpp | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/ut/low_cardinality_nullable_tests.cpp b/ut/low_cardinality_nullable_tests.cpp index c570efed..cd13416f 100644 --- a/ut/low_cardinality_nullable_tests.cpp +++ b/ut/low_cardinality_nullable_tests.cpp @@ -131,20 +131,3 @@ TEST(LowCardinalityOfNullable, InsertAndQueryEmpty) { }); } -TEST(LowCardinalityOfNullable, ThrowOnBackwardsCompatibleLCColumn) { - auto column = buildTestColumn({}, {}); - - Block block; - block.AppendColumn("words", column); - - Client client(ClientOptions(localHostEndpoint) - .SetPingBeforeQuery(true)); - - createTable(client); - - EXPECT_THROW(client.Insert("lc_of_nullable", block), UnimplementedError); - - client.Select("SELECT * FROM lc_of_nullable", [&](const Block& bl) { - ASSERT_EQ(bl.GetRowCount(), 0u); - }); -}