This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 5f760a8939 [fix](runtime_filter) remove incorrect DCHECK (#21050) 5f760a8939 is described below commit 5f760a8939696732de5688c086bbe38ff5da02c8 Author: Jerry Hu <mrh...@gmail.com> AuthorDate: Wed Jun 21 11:27:53 2023 +0800 [fix](runtime_filter) remove incorrect DCHECK (#21050) --- be/src/exprs/runtime_filter.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/be/src/exprs/runtime_filter.cpp b/be/src/exprs/runtime_filter.cpp index 2c6f3662bb..e6639dadf0 100644 --- a/be/src/exprs/runtime_filter.cpp +++ b/be/src/exprs/runtime_filter.cpp @@ -1199,7 +1199,6 @@ bool IRuntimeFilter::await() { ? RuntimeFilterState::TIME_OUT : RuntimeFilterState::NOT_READY, std::memory_order_acq_rel)) { - DCHECK(expected == RuntimeFilterState::READY); return true; } return false; @@ -1272,7 +1271,6 @@ bool IRuntimeFilter::is_ready_or_timeout() { } if (!_rf_state_atomic.compare_exchange_strong(expected, RuntimeFilterState::NOT_READY, std::memory_order_acq_rel)) { - DCHECK(expected == RuntimeFilterState::READY); return true; } return false; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org