Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
Signed-off-by: silverbullet233 <[email protected]>
  • Loading branch information
silverbullet233 committed Feb 26, 2025
1 parent c83d951 commit 26e7296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/column/binary_column.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ template <typename T>
void BinaryColumnBase<T>::crc32_hash_with_selection(uint32_t* hashes, uint8_t* selection, uint16_t from,
uint16_t to) const {
for (uint32_t i = from; i < to && !_bytes.empty(); ++i) {
if (selection[i]) {
if (!selection[i]) {
continue;
}
hashes[i] = HashUtil::zlib_crc_hash(_bytes.data() + _offsets[i],
Expand Down

0 comments on commit 26e7296

Please sign in to comment.