github-actions[bot] commented on code in PR #30019: URL: https://github.com/apache/doris/pull/30019#discussion_r1455049077
########## be/src/vec/exec/join/process_hash_table_probe_impl.h: ########## @@ -195,9 +194,21 @@ Status ProcessHashTableProbe<JoinOpType, Parent>::do_process(HashTableType& hash if constexpr (with_other_conjuncts || (JoinOpType != TJoinOp::RIGHT_SEMI_JOIN && JoinOpType != TJoinOp::RIGHT_ANTI_JOIN)) { + auto check_all_match_one = [](const std::vector<uint32_t>& vecs, uint32_t probe_idx, + int size) { + if (size < 1 || vecs[0] != probe_idx) return false; Review Comment: warning: statement should be inside braces [readability-braces-around-statements] ```suggestion if (size < 1 || vecs[0] != probe_idx) { return false; } ``` -- 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