Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad-gogov committed Dec 20, 2024
1 parent 74572a2 commit 5c721ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace NKikimr::NConfig {
namespace {

EValidationResult ValidateDefaultCompression(const NKikimrConfig::TColumnShardConfig& columnShardConfig, std::vector<TString>& msg) {
if (!columnShardConfig.HasDefaultCompression() && !columnShardConfig.HasDefaultCompression()) {
if (!columnShardConfig.HasDefaultCompression() && !columnShardConfig.HasDefaultCompressionLevel()) {
return EValidationResult::Ok;
}
std::optional<arrow::Compression::type> codec = NArrow::CompressionFromProto(columnShardConfig.GetDefaultCompression());
Expand Down

0 comments on commit 5c721ab

Please sign in to comment.