Skip to content

Commit

Permalink
Fix LeftAnti SMJ join when the join filter is set
Browse files Browse the repository at this point in the history
  • Loading branch information
comphead committed Jun 6, 2024
1 parent 2a23401 commit 8023f45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datafusion/physical-plan/src/joins/sort_merge_join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1415,8 +1415,8 @@ fn get_filter_column(
.map(|i| buffered_columns[i.index].clone())
.collect::<Vec<_>>();

// dbg!(&left_columns);
// dbg!(&right_columns);
// dbg!(&left_columns);
// dbg!(&right_columns);

filter_columns.extend(left_columns);
filter_columns.extend(right_columns);
Expand Down

0 comments on commit 8023f45

Please sign in to comment.