diff options
author | uzhas <uzhas@ydb.tech> | 2022-10-27 15:28:17 +0300 |
---|---|---|
committer | uzhas <uzhas@ydb.tech> | 2022-10-27 15:28:17 +0300 |
commit | 347c17bf6e17b81510b629e27897640b08bc8c4b (patch) | |
tree | a9d55617835df755d3addefda85f7e3b7d2d45c7 | |
parent | 4d05deef52c4b096f042ad1ff65284e2c411cae1 (diff) | |
download | ydb-347c17bf6e17b81510b629e27897640b08bc8c4b.tar.gz |
fix coveriy issue 42785: Logical vs. bitwise operator
-rw-r--r-- | ydb/core/sys_view/storage/base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/sys_view/storage/base.h b/ydb/core/sys_view/storage/base.h index 47945cbbcf7..c5edcf5ff11 100644 --- a/ydb/core/sys_view/storage/base.h +++ b/ydb/core/sys_view/storage/base.h @@ -90,7 +90,7 @@ namespace NKikimr::NSysView { TCell MakeCellFrom(const TString& value, NScheme::TTypeId type) { Y_VERIFY(type == NScheme::NTypeIds::String || type == NScheme::NTypeIds::String4k || - NScheme::NTypeIds::String2m || type == NScheme::NTypeIds::Utf8); + type == NScheme::NTypeIds::String2m || type == NScheme::NTypeIds::Utf8); return TCell(value.data(), value.size()); } |