This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch branch-1.2-lts in repository https://gitbox.apache.org/repos/asf/doris.git
commit bea8f4aba8a4e781203072d166c0fcec3b2f34b7 Author: Kaijie Chen <c...@apache.org> AuthorDate: Thu Jul 13 13:35:50 2023 +0800 [fix](compile) fix ColumnArray::update_crcs_with_value (#21781) Fix compile error from #21779 --- be/src/vec/columns/column_array.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/be/src/vec/columns/column_array.cpp b/be/src/vec/columns/column_array.cpp index 6a2f40792b..5fb1c079be 100644 --- a/be/src/vec/columns/column_array.cpp +++ b/be/src/vec/columns/column_array.cpp @@ -315,12 +315,12 @@ void ColumnArray::update_crcs_with_value(std::vector<uint64_t>& hash, PrimitiveT for (size_t i = 0; i < s; ++i) { // every row if (null_data[i] == 0) { - update_crc_with_value(i, hash[i]); + update_crc_with_value(i, i + 1, hash[i], nullptr); } } } else { for (size_t i = 0; i < s; ++i) { - update_crc_with_value(i, hash[i]); + update_crc_with_value(i, i + 1, hash[i], nullptr); } } } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org