HappenLee commented on code in PR #10070:
URL: https://github.com/apache/incubator-doris/pull/10070#discussion_r898649471
##########
be/src/vec/columns/column_vector.cpp:
##########
@@ -327,7 +327,7 @@ ColumnPtr ColumnVector<T>::replicate(const
IColumn::Offsets& offsets) const {
// vectorized this code to speed up
IColumn::Offset counts[size];
- for (size_t i = 0; i < size; ++i) {
+ for (ssize_t i = 0; i < size; ++i) {
Review Comment:
size is `size_t`, not need change `i` to `sszie_t`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]