This is an automated email from the ASF dual-hosted git repository. morningman 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 02c6b62a22 [fix](runtime-filter)(branch-1.2) add the _acquire_runtime_filter method that was accidentally deleted (#16507) 02c6b62a22 is described below commit 02c6b62a220189df3de89e25f3677b2d917bcf70 Author: luozenglin <37725793+luozeng...@users.noreply.github.com> AuthorDate: Wed Feb 8 22:00:34 2023 +0800 [fix](runtime-filter)(branch-1.2) add the _acquire_runtime_filter method that was accidentally deleted (#16507) The call to the _acquire_runtime_filter method was accidentally removed during the cherry-pick, resulting in the runtime-filter not being applied. --- be/src/vec/exec/scan/vscan_node.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/be/src/vec/exec/scan/vscan_node.cpp b/be/src/vec/exec/scan/vscan_node.cpp index 0d9c049cf7..3ac9d24b2e 100644 --- a/be/src/vec/exec/scan/vscan_node.cpp +++ b/be/src/vec/exec/scan/vscan_node.cpp @@ -88,6 +88,7 @@ Status VScanNode::open(RuntimeState* state) { RETURN_IF_CANCELLED(state); RETURN_IF_ERROR(ExecNode::open(state)); + RETURN_IF_ERROR(_acquire_runtime_filter()); RETURN_IF_ERROR(_process_conjuncts()); if (_eos) { return Status::OK(); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org