HappenLee commented on code in PR #42930:
URL: https://github.com/apache/doris/pull/42930#discussion_r1823740545


##########
be/src/vec/exprs/vectorized_agg_fn.cpp:
##########
@@ -355,7 +356,7 @@ Status AggFnEvaluator::check_agg_fn_output(int64_t key_size,
                                            const 
std::vector<vectorized::AggFnEvaluator*>& agg_fn,
                                            const RowDescriptor& 
output_row_desc) {
     auto name_and_types = 
VectorizedUtils::create_name_and_data_types(output_row_desc);
-    for (int i = key_size, j = 0; i < name_and_types.size(); i++, j++) {
+    for (int i = static_cast<int>(key_size), j = 0; i < name_and_types.size(); 
i++, j++) {

Review Comment:
   ?



-- 
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: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to