diff options
author | snaury <snaury@yandex-team.ru> | 2022-02-07 18:19:44 +0300 |
---|---|---|
committer | snaury <snaury@yandex-team.ru> | 2022-02-07 18:19:44 +0300 |
commit | 836f25f8b8fd1b3d80d84a6fe83ba91c58e77ace (patch) | |
tree | 5a231ad56f35ff10a535791e3a8a490a64178a8d | |
parent | 10a4e33969ca519a7fb275e70d01288992e1f913 (diff) | |
download | ydb-836f25f8b8fd1b3d80d84a6fe83ba91c58e77ace.tar.gz |
Fix a typo, ui32 -> ui64, KIKIMR-14270
ref:29873a13ad9531697562247449d1644b8c072ae3
-rw-r--r-- | ydb/core/tablet_flat/flat_comp_gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/tablet_flat/flat_comp_gen.cpp b/ydb/core/tablet_flat/flat_comp_gen.cpp index cf8363b3864..b3e0c637156 100644 --- a/ydb/core/tablet_flat/flat_comp_gen.cpp +++ b/ydb/core/tablet_flat/flat_comp_gen.cpp @@ -409,7 +409,7 @@ ui64 TGenCompactionStrategy::BeginMemCompaction(TTaskId taskId, TSnapEdge edge, bool TGenCompactionStrategy::ScheduleBorrowedCompaction() { // Find if we actually have borrowed parts - const ui32 ownerTabletId = Backend->OwnerTabletId(); + const ui64 ownerTabletId = Backend->OwnerTabletId(); bool haveBorrowed = false; for (const auto& pr : KnownParts) { if (pr.first.TabletID() != ownerTabletId) { |