mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
Fix pvs warnings.
This commit is contained in:
parent
5400ffbf93
commit
778be3174a
@ -262,7 +262,7 @@ TEST(WeakHash32, ColumnDecimal32)
|
||||
for (int _i [[maybe_unused]] : {1, 2})
|
||||
{
|
||||
for (int64_t i = -32768; i < 32768; ++i)
|
||||
data.push_back(i << 16);
|
||||
data.push_back(i << 16); //-V610
|
||||
}
|
||||
|
||||
WeakHash32 hash(col->size());
|
||||
@ -279,7 +279,7 @@ TEST(WeakHash32, ColumnDecimal64)
|
||||
for (int _i [[maybe_unused]] : {1, 2})
|
||||
{
|
||||
for (int64_t i = -32768; i < 32768; ++i)
|
||||
data.push_back(i << 32);
|
||||
data.push_back(i << 32); //-V610
|
||||
}
|
||||
|
||||
WeakHash32 hash(col->size());
|
||||
|
Loading…
Reference in New Issue
Block a user