summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--yt/yt/client/table_client/schema.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/client/table_client/schema.cpp b/yt/yt/client/table_client/schema.cpp
index 7416c7462e2..46cfbee1b23 100644
--- a/yt/yt/client/table_client/schema.cpp
+++ b/yt/yt/client/table_client/schema.cpp
@@ -812,7 +812,7 @@ bool TTableSchema::IsCGComparatorApplicable() const
auto keyTypes = GetKeyColumnTypes();
return std::none_of(keyTypes.begin(), keyTypes.end(), [] (auto type) {
- return type == EValueType::Any;
+ return type == EValueType::Any || type == EValueType::Null;
});
}