Skip to content

Commit

Permalink
Removed test that is no longer needed
Browse files Browse the repository at this point in the history
  • Loading branch information
Enmk authored Feb 25, 2024
1 parent aa9c955 commit 8fa835e
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions ut/low_cardinality_nullable_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
}

0 comments on commit 8fa835e

Please sign in to comment.