Skip to content

Commit

Permalink
EXPB-2264 Make Join for CR41CSW fast
Browse files Browse the repository at this point in the history
  • Loading branch information
kramerul committed May 3, 2024
1 parent 8384b0c commit c22097a
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1989,9 +1989,6 @@ public static <TSource, TInner, TResult> Enumerable<TResult> nestedLoopJoin(
final Predicate2<TSource, TInner> predicate,
Function2<? super @Nullable TSource, ? super @Nullable TInner, TResult> resultSelector,
final JoinType joinType) {
if (!joinType.generatesNullsOnLeft()) {
return nestedLoopJoinOptimized(outer, inner, predicate, resultSelector, joinType);
}
return nestedLoopJoinAsList(outer, inner, predicate, resultSelector, joinType);
}

Expand Down

0 comments on commit c22097a

Please sign in to comment.