This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 50a7edd8ecd85a3666e73ff1b2671a8951abf6aa Author: HappenLee <happen...@hotmail.com> AuthorDate: Thu Jul 20 18:12:20 2023 +0800 [Bug][RegressionTest] fix the DCHECK failed in join code (#22021) --- be/src/vec/exec/join/process_hash_table_probe_impl.h | 1 - 1 file changed, 1 deletion(-) diff --git a/be/src/vec/exec/join/process_hash_table_probe_impl.h b/be/src/vec/exec/join/process_hash_table_probe_impl.h index 80bf2910b8..d32bfdbe37 100644 --- a/be/src/vec/exec/join/process_hash_table_probe_impl.h +++ b/be/src/vec/exec/join/process_hash_table_probe_impl.h @@ -136,7 +136,6 @@ void ProcessHashTableProbe<JoinOpType>::probe_side_output_column( if (all_match_one) { mcol[i]->insert_range_from(*column, last_probe_index, probe_size); } else { - DCHECK_GE(_probe_indexs.size(), last_probe_index + probe_size); column->replicate(&_probe_indexs[0], size, *mcol[i]); } } else { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org