This is an automated email from the ASF dual-hosted git repository.
lihaopeng 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 e958b13747 [Exec] Add conjection for union_node. (#16777)
e958b13747 is described below
commit e958b1374785cd5381cd94cde351ba2e8284279b
Author: ZhaoChangle <[email protected]>
AuthorDate: Mon Feb 20 10:48:58 2023 +0800
[Exec] Add conjection for union_node. (#16777)
---
be/src/vec/exec/vunion_node.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/be/src/vec/exec/vunion_node.cpp b/be/src/vec/exec/vunion_node.cpp
index 87f5ee5551..a10bb4ed3d 100644
--- a/be/src/vec/exec/vunion_node.cpp
+++ b/be/src/vec/exec/vunion_node.cpp
@@ -283,6 +283,7 @@ Status VUnionNode::get_next(RuntimeState* state, Block*
block, bool* eos) {
} else if (has_more_const(state)) {
RETURN_IF_ERROR(get_next_const(state, block));
}
+ RETURN_IF_ERROR(VExprContext::filter_block(_vconjunct_ctx_ptr, block,
block->columns()));
*eos = (!has_more_passthrough() && !has_more_materialized() &&
!has_more_const(state));
reached_limit(block, eos);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]