From 26e72967774c17b23faa35921feaf31b48aaa440 Mon Sep 17 00:00:00 2001 From: silverbullet233 <3675229+silverbullet233@users.noreply.github.com> Date: Wed, 26 Feb 2025 16:54:53 +0800 Subject: [PATCH] fix comment Signed-off-by: silverbullet233 <3675229+silverbullet233@users.noreply.github.com> --- be/src/column/binary_column.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/column/binary_column.cpp b/be/src/column/binary_column.cpp index 808a6ac4190c67..c768c724366a2a 100644 --- a/be/src/column/binary_column.cpp +++ b/be/src/column/binary_column.cpp @@ -654,7 +654,7 @@ template void BinaryColumnBase::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],