mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
dbms: Server: Fixed typo. [#METR-19266]
This commit is contained in:
parent
e0347308b9
commit
10770bc921
@ -127,7 +127,7 @@ static inline T ALWAYS_INLINE packFixed(
|
||||
|
||||
for (size_t j = 0; j < keys_size; ++j)
|
||||
{
|
||||
bool is_null = has_bitmap && (bitmap[j % 8] & (UINT8_C(1) << (j % 8)));
|
||||
bool is_null = has_bitmap && (bitmap[j / 8] & (UINT8_C(1) << (j % 8)));
|
||||
if (is_null)
|
||||
continue;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user