This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit e2ccca6290e34c6cc8c6c1e657c85267f4b787aa Author: Gabriel <gabrielleeb...@gmail.com> AuthorDate: Tue Jan 9 22:45:59 2024 +0800 [pipelineX](bug) Fix runtime filter timeout (#29738) --- be/src/pipeline/exec/hashjoin_build_sink.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/be/src/pipeline/exec/hashjoin_build_sink.cpp b/be/src/pipeline/exec/hashjoin_build_sink.cpp index f34f835d121..757673c70a8 100644 --- a/be/src/pipeline/exec/hashjoin_build_sink.cpp +++ b/be/src/pipeline/exec/hashjoin_build_sink.cpp @@ -388,7 +388,9 @@ HashJoinBuildSinkOperatorX::HashJoinBuildSinkOperatorX(ObjectPool* pool, int ope _partition_exprs(tnode.__isset.distribute_expr_lists && !_is_broadcast_join ? tnode.distribute_expr_lists[1] : std::vector<TExpr> {}), - _use_global_rf(use_global_rf) {} + _use_global_rf(use_global_rf) { + _runtime_filter_descs = tnode.runtime_filters; +} Status HashJoinBuildSinkOperatorX::prepare(RuntimeState* state) { if (_is_broadcast_join) { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org