diff options
author | chertus <azuikov@ydb.tech> | 2023-02-15 15:26:05 +0300 |
---|---|---|
committer | chertus <azuikov@ydb.tech> | 2023-02-15 15:26:05 +0300 |
commit | 72165825d588d7a1fc445120db8d7f6dba02e7b3 (patch) | |
tree | 67212a436d1541eebc0246fb0395b83a23438b04 | |
parent | 2ad5718c0cbcb0066f3c36421d63a54c19bb4c1d (diff) | |
download | ydb-72165825d588d7a1fc445120db8d7f6dba02e7b3.tar.gz |
fix VERIFY
-rw-r--r-- | ydb/core/tx/columnshard/columnshard_impl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ydb/core/tx/columnshard/columnshard_impl.cpp b/ydb/core/tx/columnshard/columnshard_impl.cpp index afcf4e31d62..f585262173c 100644 --- a/ydb/core/tx/columnshard/columnshard_impl.cpp +++ b/ydb/core/tx/columnshard/columnshard_impl.cpp @@ -1079,14 +1079,15 @@ void TColumnShard::ForgetBlobs(const TActorContext& ctx, const THashSet<NOlap::T auto& blobId = ev.Blob; TEvictMetadata meta; auto evict = BlobManager->GetDropped(blobId, meta); - Y_VERIFY(evict.Blob == blobId); if (evict.State == EEvictState::UNKNOWN) { LOG_S_ERROR("Forget unknown blob '" << blobId.ToStringNew() << "' at tablet " << TabletID()); } else if (NOlap::IsExported(evict.State)) { + Y_VERIFY(evict.Blob == blobId); strBlobs += "'" + blobId.ToStringNew() + "' "; tierBlobs[meta.GetTierName()].emplace_back(std::move(evict)); } else { + Y_VERIFY(evict.Blob == blobId); strBlobsDelayed += "'" + blobId.ToStringNew() + "' "; } } |