We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af88b00 commit 0a8be30Copy full SHA for 0a8be30
pkg/planner/core/operator/logicalop/logical_join.go
@@ -262,12 +262,6 @@ func (p *LogicalJoin) PredicatePushDown(predicates []expression.Expression) (ret
262
p.updateEQCond()
263
ruleutil.BuildKeyInfoPortal(p)
264
newnChild, err := p.SemiJoinRewrite()
265
- if join, ok := newnChild.(*LogicalJoin); ok {
266
- ret, ok = join.canConvertAntiJoin(ret)
267
- if ok {
268
- join.JoinType = base.AntiSemiJoin
269
- }
270
271
return ret, newnChild, err
272
}
273
0 commit comments