File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
fe/fe-core/src/test/java/org/apache/doris/nereids/rules Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ void testJoin() {
4949 sql = String .format ("select * from t1 %s t2" ,
5050 joinType .toString ().replace ("_" , " " ));
5151 }
52- if (joinType .isNullAwareLeftAntiJoin ()) {
52+ if (joinType .isNullAwareLeftAntiJoin () || joinType . isAsofJoin () ) {
5353 continue ;
5454 }
5555 PlanChecker .from (connectContext )
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ public void testPushInsideInnerJoin() {
108108 @ Test
109109 public void testShouldNotPushInsideJoin () {
110110 for (JoinType joinType : JoinType .values ()) {
111- if (JoinType . INNER_JOIN == joinType || JoinType . CROSS_JOIN == joinType ) {
111+ if (joinType . isInnerOrCrossJoin () ) {
112112 continue ;
113113 }
114114 shouldNotPushInsideJoin (joinType );
You can’t perform that action at this time.
0 commit comments