We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a8be30 commit afbfa65Copy full SHA for afbfa65
pkg/planner/core/operator/logicalop/logical_join.go
@@ -268,9 +268,6 @@ func (p *LogicalJoin) PredicatePushDown(predicates []expression.Expression) (ret
268
func (p *LogicalJoin) canConvertAntiJoin(ret []expression.Expression) (newRet []expression.Expression, canConvert bool) {
269
switch p.JoinType {
270
case base.LeftOuterJoin:
271
- if len(p.EqualConditions) == 0 {
272
- return ret, false
273
- }
274
ch := p.Children()[0]
275
newRet = make([]expression.Expression, 0, len(ret))
276
for _, expr := range ret {
0 commit comments