Fix style

This commit is contained in:
Kruglov Pavel 2022-03-23 23:15:07 +01:00 committed by GitHub
parent 881d5721a0
commit 9ae52910f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -88,7 +88,7 @@ size_t extractMaskNumericImpl(
if (data.size() != mask.size())
throw Exception(ErrorCodes::LOGICAL_ERROR, "The size of a full data column is not equal to the size of a mask");
}
size_t ones_count = 0;
size_t data_index = 0;
@ -135,7 +135,7 @@ size_t extractMaskNumericImpl(
if (data_index != data_size)
throw Exception(ErrorCodes::LOGICAL_ERROR, "The size of a short column is not equal to the number of ones in a mask");
}
return ones_count;
}