diff options
author | ulya-sidorina <yulia@ydb.tech> | 2022-07-08 18:29:00 +0300 |
---|---|---|
committer | ulya-sidorina <yulia@ydb.tech> | 2022-07-08 18:29:00 +0300 |
commit | c3d23d9e2cb599d0953fd446f3e88c4fe9c815e1 (patch) | |
tree | 4a3aca961b28cdff061c0fbbedda1b4bf4d247cf | |
parent | 31f175a0d4c341052b03de84fabb56c2dc46ccdc (diff) | |
download | ydb-c3d23d9e2cb599d0953fd446f3e88c4fe9c815e1.tar.gz |
enable not null columns
feature(ydb): enable not null columns
-rw-r--r-- | ydb/core/protos/config.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/protos/config.proto b/ydb/core/protos/config.proto index 695ee5d85e..28ffdfb058 100644 --- a/ydb/core/protos/config.proto +++ b/ydb/core/protos/config.proto @@ -686,7 +686,7 @@ message TFeatureFlags { optional bool EnableBackgroundCompaction = 51 [default = true]; optional bool EnableArrowFormatInChannels = 52 [default = false]; optional bool EnableBackgroundCompactionServerless = 53 [default = false]; - optional bool EnableNotNullColumns = 54 [default = false]; + optional bool EnableNotNullColumns = 54 [default = true]; optional bool EnableTtlOnAsyncIndexedTables = 55 [default = true]; optional bool EnableBulkUpsertToAsyncIndexedTables = 56 [default = true]; optional bool EnableNodeBrokerSingleDomainMode = 57 [default = false]; |