diff options
author | alexvru <alexvru@ydb.tech> | 2022-10-17 17:37:12 +0300 |
---|---|---|
committer | alexvru <alexvru@ydb.tech> | 2022-10-17 17:37:12 +0300 |
commit | f9fcf7e37d27a6166f185649c57a3d52be02bf8b (patch) | |
tree | d845f34863c9bd62bb92538eb75cdb218b98af56 | |
parent | f6267a9bdbb14e4527396178875e7e20ddcc5a0a (diff) | |
download | ydb-f9fcf7e37d27a6166f185649c57a3d52be02bf8b.tar.gz |
Fix coverity issue
-rw-r--r-- | ydb/core/blob_depot/data_resolve.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/blob_depot/data_resolve.cpp b/ydb/core/blob_depot/data_resolve.cpp index dfc9f5abfef..8c5a4f6b7c0 100644 --- a/ydb/core/blob_depot/data_resolve.cpp +++ b/ydb/core/blob_depot/data_resolve.cpp @@ -383,7 +383,7 @@ namespace NKikimr::NBlobDepot { } if (minId == maxId) { const auto it = Data.find(TKey(minId)); - if (it != Data.end() && !it->second.ValueChain.empty() || it->second.OriginalBlobId) { + if (it != Data.end() && (!it->second.ValueChain.empty() || it->second.OriginalBlobId)) { continue; // fast path for extreme queries } } |