diff options
author | Aleksei Borzenkov <snaury@gmail.com> | 2022-06-16 13:16:06 +0300 |
---|---|---|
committer | Daniil Cherednik <dan.cherednik@gmail.com> | 2022-06-16 13:16:06 +0300 |
commit | 01ce45a1a913138ea3922c5cb50a1aaac39c3008 (patch) | |
tree | c3256b8558bba949dc53f93097ecf7dc1ddcc3f0 | |
parent | 12879bbb18842b514596250835c17f0a16996eaa (diff) | |
download | ydb-01ce45a1a913138ea3922c5cb50a1aaac39c3008.tar.gz |
22-2: Fix incorrect borrowed compaction on datashard merges, KIKIMR-1512222.2.40
Merge from trunk: r9593492
REVIEW: 2644599
x-ydb-stable-ref: a10dc048af861e25b493933947a02ea809511e1a
-rw-r--r-- | ydb/core/tablet_flat/flat_executor_compaction_logic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/tablet_flat/flat_executor_compaction_logic.h b/ydb/core/tablet_flat/flat_executor_compaction_logic.h index be7a3cda8d..35a903af31 100644 --- a/ydb/core/tablet_flat/flat_executor_compaction_logic.h +++ b/ydb/core/tablet_flat/flat_executor_compaction_logic.h @@ -100,7 +100,7 @@ struct TCompactionLogicState { bool ChangesRequested = false; - bool AllowBorrowedGarbageCompaction = true; + bool AllowBorrowedGarbageCompaction = false; TTableInfo() = default; |