Files
doris/fe/fe-core
谢健 45fd23c153 [feature](Nereids) transform outer join to anti join with is null condition (#23833)
create table t1(c1 int not null, c2 int not null) distributed by hash(c1) buckets 3 PROPERTIES ("replication_allocation" = "tag.location.default: 1");

create table t2(c1 int not null, c2 int not null) distributed by hash(c1) buckets 3 PROPERTIES ("replication_allocation" = "tag.location.default: 1");

select t2.* from t1 left outer t2 where t2.c1 is null
==>
t1 right anti t2
2023-09-06 11:31:57 +08:00
..