Mryange commented on code in PR #42930: URL: https://github.com/apache/doris/pull/42930#discussion_r1828665668
########## be/src/vec/exprs/vexpr_context.cpp: ########## @@ -200,9 +204,10 @@ Status VExprContext::execute_conjuncts(const VExprContextSPtrs& ctxs, } } - int output_rows = - rows - - (is_rf_wrapper ? simd::count_zero_num((int8*)result_filter_data, rows) : 0); + size_t output_rows = + rows - (is_rf_wrapper ? static_cast<int>(simd::count_zero_num( Review Comment: why static_cast -- 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