diff --git a/fe/fe-core/src/test/java/org/apache/doris/nereids/rules/rewrite/DistinctSplitTest.java b/fe/fe-core/src/test/java/org/apache/doris/nereids/rules/rewrite/DistinctSplitTest.java index f132afc5f4d81fc..41801abd352568b 100644 --- a/fe/fe-core/src/test/java/org/apache/doris/nereids/rules/rewrite/DistinctSplitTest.java +++ b/fe/fe-core/src/test/java/org/apache/doris/nereids/rules/rewrite/DistinctSplitTest.java @@ -60,7 +60,7 @@ void multiSumWithoutGby() { } @Test - void SumCountWithoutGby() { + void sumCountWithoutGby() { String sql = "select sum(distinct b), count(distinct a) from test_distinct_multi"; PlanChecker.from(connectContext).checkExplain(sql, planner -> { Plan plan = planner.getOptimizedPlan(); @@ -72,7 +72,7 @@ void SumCountWithoutGby() { } @Test - void CountMultiColumnsWithoutGby() { + void countMultiColumnsWithoutGby() { String sql = "select count(distinct b,c), count(distinct a,b) from test_distinct_multi"; PlanChecker.from(connectContext).checkExplain(sql, planner -> { Plan plan = planner.getOptimizedPlan(); @@ -84,7 +84,7 @@ void CountMultiColumnsWithoutGby() { } @Test - void CountMultiColumnsWithGby() { + void countMultiColumnsWithGby() { String sql = "select count(distinct b,c), count(distinct a,b) from test_distinct_multi group by d"; PlanChecker.from(connectContext).checkExplain(sql, planner -> { Plan plan = planner.getOptimizedPlan();