This is an automated email from the ASF dual-hosted git repository.
panxiaolei 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 91b0edfaa2d [Bug](join) try fix wrong _has_null_in_build_side setted
(#27684)
91b0edfaa2d is described below
commit 91b0edfaa2d115ca0c6169865174546872e9262e
Author: Pxl <[email protected]>
AuthorDate: Tue Nov 28 17:42:14 2023 +0800
[Bug](join) try fix wrong _has_null_in_build_side setted (#27684)
try fix wrong _has_null_in_build_side setted
---
be/src/vec/exec/join/vhash_join_node.cpp | 5 -----
1 file changed, 5 deletions(-)
diff --git a/be/src/vec/exec/join/vhash_join_node.cpp
b/be/src/vec/exec/join/vhash_join_node.cpp
index aa563060748..f422f7919b0 100644
--- a/be/src/vec/exec/join/vhash_join_node.cpp
+++ b/be/src/vec/exec/join/vhash_join_node.cpp
@@ -728,11 +728,6 @@ Status HashJoinNode::sink(doris::RuntimeState* state,
vectorized::Block* in_bloc
// make one block for each 4 gigabytes
constexpr static auto BUILD_BLOCK_MAX_SIZE = 4 * 1024UL * 1024UL * 1024UL;
- if (_has_null_in_build_side) {
- // TODO: if _has_null_in_build_side is true we should finish current
pipeline task.
- DCHECK(state->enable_pipeline_exec());
- return Status::OK();
- }
if (_should_build_hash_table) {
// If eos or have already met a null value using short-circuit
strategy, we do not need to pull
// data from probe side.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]