Skip to content

Commit

Permalink
Update be/src/vec/columns/column_decimal.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
yiguolei and github-actions[bot] authored Nov 30, 2023
1 parent c5e23b2 commit b4464d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion be/src/vec/columns/column_decimal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ void ColumnDecimal<T>::update_murmurs_with_value(uint32_t* __restrict hashes, Pr
}
} else {
for (size_t i = 0; i < s; i++) {
if (null_data[i] == 0) decimalv2_do_murmur(i, hashes[i]);
if (null_data[i] == 0) { decimalv2_do_murmur(i, hashes[i]);
}
}
}
}
Expand Down

0 comments on commit b4464d4

Please sign in to comment.