Skip to content

Commit

Permalink
Merge pull request ClickHouse#60259 from bigo-sg/hash_join_bug_59625
Browse files Browse the repository at this point in the history
Resolve ClickHouse#59625: improper filter setting
  • Loading branch information
hanfei1991 authored Mar 4, 2024
2 parents e1e92e5 + aca2197 commit f07f438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Interpreters/HashJoin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1541,7 +1541,7 @@ size_t joinRightColumnsSwitchNullability(
}
else
{
return joinRightColumnsSwitchMultipleDisjuncts<KIND, STRICTNESS, KeyGetter, Map, true>(std::forward<std::vector<KeyGetter>>(key_getter_vector), mapv, added_columns, used_flags);
return joinRightColumnsSwitchMultipleDisjuncts<KIND, STRICTNESS, KeyGetter, Map, false>(std::forward<std::vector<KeyGetter>>(key_getter_vector), mapv, added_columns, used_flags);
}
}

Expand Down

0 comments on commit f07f438

Please sign in to comment.