Skip to content

Commit

Permalink
SMJ: fix streaming row concurrency issue for LEFT SEMI filtered join
Browse files Browse the repository at this point in the history
  • Loading branch information
comphead committed Jun 21, 2024
1 parent 64f0b3d commit dc8ad8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/physical-plan/src/joins/sort_merge_join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2947,7 +2947,7 @@ mod tests {
assert_eq!(
get_filtered_join_mask(
LeftSemi,
UInt64Array::from(vec![0, 0, 0, 1, 1, 1]),
&UInt64Array::from(vec![0, 0, 0, 1, 1, 1]),
&BooleanArray::from(vec![true, false, false, false, false, true]),
&HashSet::from_iter(vec![1]),
&0,
Expand Down

0 comments on commit dc8ad8a

Please sign in to comment.