Skip to content

Commit

Permalink
fix complile
Browse files Browse the repository at this point in the history
  • Loading branch information
feiniaofeiafei committed Nov 21, 2024
1 parent 408debe commit 41cf537
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
import java.util.HashMap;
import java.util.HashSet;
import java.util.IdentityHashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import org.apache.doris.nereids.util.MemoPatternMatchSupported;
import org.apache.doris.nereids.util.PlanChecker;
import org.apache.doris.utframe.TestWithFeService;

import org.junit.jupiter.api.Test;

class InferPredicatesTest extends TestWithFeService implements MemoPatternMatchSupported {
Expand Down Expand Up @@ -687,7 +688,6 @@ void testAggMultiAliasWithSameChild() {
)
).when(join -> join.getJoinType() == JoinType.LEFT_OUTER_JOIN)
);

}

@Test
Expand All @@ -702,7 +702,7 @@ void pullUpPredicateFromIntersect() {
&& ExpressionUtils.isInferred(filter.getPredicate())
&& filter.getPredicate().toSql().contains("(sid > 1)")
&& filter.getPredicate().toSql().contains("(sid < 10)"))
);
);
}

@Test
Expand Down

0 comments on commit 41cf537

Please sign in to comment.