Fixed style check

This commit is contained in:
Maksim Kita 2022-04-04 13:34:27 +02:00
parent e43fdcd7eb
commit af405d3ba6

View File

@ -21,9 +21,8 @@ namespace DB::GatherUtils
inline ALWAYS_INLINE bool hasNull(const UInt8 * null_map, size_t null_map_size)
{
if (null_map == nullptr) {
if (null_map == nullptr)
return false;
}
for (size_t i = 0; i < null_map_size; ++i)
{