diff options
author | kruall <kruall@ydb.tech> | 2022-12-20 19:43:28 +0300 |
---|---|---|
committer | kruall <kruall@ydb.tech> | 2022-12-20 19:43:28 +0300 |
commit | 28c3b8b826e26f60d5d88989555cabe8effb6dca (patch) | |
tree | 887bdecdd2064148680cf5acf67a2ecb1565c238 | |
parent | 54f0dd2363ab07e191cf628cbb476600fac7ac08 (diff) | |
download | ydb-28c3b8b826e26f60d5d88989555cabe8effb6dca.tar.gz |
Disable VPatch by default,
-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 0f19054433..f9aee29860 100644 --- a/ydb/core/protos/config.proto +++ b/ydb/core/protos/config.proto @@ -715,7 +715,7 @@ message TFeatureFlags { optional bool AllowStreamExecuteYqlScript = 42 [default = true]; optional bool EnableKqpScanOverPersistentSnapshot = 43 [default = true]; // deprecated: always true optional bool EnableOlapSchemaOperations = 44 [default = true]; - optional bool EnableVPatch = 45 [default = true]; + optional bool EnableVPatch = 45 [default = false]; optional bool EnableMvccSnapshotReads = 46 [default = true]; optional Tribool EnableMvcc = 47 [default = VALUE_TRUE]; optional bool EnableSchemeTransactionsAtSchemeShard = 48 [default = true]; |