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
The following commit(s) were added to refs/heads/branch-1.2-lts by this push:
new 407ee67744 [fix](compile) fix ColumnArray::update_crcs_with_value
(#21781)
407ee67744 is described below
commit 407ee677445ca09855bf95204f45021b4d8d650f
Author: Kaijie Chen <[email protected]>
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: [email protected]
For additional commands, e-mail: [email protected]