aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryuryalekseev <yuryalekseev@yandex-team.com>2024-07-08 14:16:34 +0300
committeryuryalekseev <yuryalekseev@yandex-team.com>2024-07-08 14:29:06 +0300
commit417580925872be9fb1d2bc69d81c5c85c277a3d6 (patch)
tree99a20f2c4c0f29193252192fb944433859080bfc
parent995d738462b7d02029be44840e712154c7ec9fe7 (diff)
downloadydb-417580925872be9fb1d2bc69d81c5c85c277a3d6.tar.gz
YT-16507: Set default value of IgnoreSortOrder to false.
e19e97f5d1622abcee8e20bde714c4e8fc263782
-rw-r--r--yt/yt/client/table_client/check_schema_compatibility.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/client/table_client/check_schema_compatibility.h b/yt/yt/client/table_client/check_schema_compatibility.h
index 8c828615f1..2fbb823ff0 100644
--- a/yt/yt/client/table_client/check_schema_compatibility.h
+++ b/yt/yt/client/table_client/check_schema_compatibility.h
@@ -8,7 +8,7 @@ namespace NYT::NTableClient {
struct TTableSchemaCompatibilityOptions
{
- bool IgnoreSortOrder;
+ bool IgnoreSortOrder = false;
bool ForbidExtraComputedColumns = true;
bool IgnoreStableNamesDifference = false;
};