This is an automated email from the ASF dual-hosted git repository. luozenglin pushed a commit to branch branch-1.2-lts in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.2-lts by this push: new 09ac48b4aa [cherry-pick](bitmapfilter) fix bitmap filter timeout unit error (#18672) 09ac48b4aa is described below commit 09ac48b4aaf60bcdd6d551005a707241291785aa Author: luozenglin <luozeng...@baidu.com> AuthorDate: Fri Apr 14 16:14:00 2023 +0800 [cherry-pick](bitmapfilter) fix bitmap filter timeout unit error (#18672) --- be/src/exprs/runtime_filter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/exprs/runtime_filter.cpp b/be/src/exprs/runtime_filter.cpp index 89e0181c0c..978d9f633e 100644 --- a/be/src/exprs/runtime_filter.cpp +++ b/be/src/exprs/runtime_filter.cpp @@ -1242,7 +1242,7 @@ bool IRuntimeFilter::await() { SCOPED_TIMER(_await_time_cost); // bitmap filter is precise filter and only filter once, so it must be applied. int64_t wait_times_ms = _wrapper->get_real_type() == RuntimeFilterType::BITMAP_FILTER - ? _state->query_options().query_timeout + ? _state->query_options().query_timeout * 1000 : _state->runtime_filter_wait_time_ms(); std::unique_lock<std::mutex> lock(_inner_mutex); if (!_is_ready) { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org