Skip to content

Commit

Permalink
mark join
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangstar333 committed Dec 27, 2023
1 parent 3befd30 commit 560d0e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/vec/exec/join/process_hash_table_probe_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ Status ProcessHashTableProbe<JoinOpType>::do_process(HashTableType& hash_table_c
if (current_offset < _batch_size) {
while (probe_index < probe_rows) {
if constexpr (ignore_null && need_null_map_for_probe) {
if ((*null_map)[probe_index]) {
if (!is_mark_join && (*null_map)[probe_index]) {
if constexpr (probe_all) {
// only full outer / left outer need insert the data of right table
if (LIKELY(current_offset < _build_block_rows.size())) {
Expand Down

0 comments on commit 560d0e7

Please sign in to comment.