You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/local/PruneJoinOnNullMatchingField.java
+20-19Lines changed: 20 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -38,31 +38,32 @@ public class PruneJoinOnNullMatchingField extends OptimizerRules.OptimizerRule<J
38
38
39
39
@Override
40
40
protectedLogicalPlanrule(Joinjoin) {
41
+
LogicalPlanplan = join;
41
42
varjoinType = join.config().type();
42
-
if ((joinType == INNER || joinType == LEFT) == false) { // other types will have different replacement logic
0 commit comments