This is an automated email from the ASF dual-hosted git repository. panxiaolei pushed a commit to branch tpc_preview3 in repository https://gitbox.apache.org/repos/asf/doris.git
commit d6bf584564d9c444258b9fb87a064c520cd37cfd Author: feiniaofeiafei <[email protected]> AuthorDate: Thu Nov 27 23:29:22 2025 +0800 fix ut --- .../doris/nereids/glue/translator/PhysicalPlanTranslatorTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fe/fe-core/src/test/java/org/apache/doris/nereids/glue/translator/PhysicalPlanTranslatorTest.java b/fe/fe-core/src/test/java/org/apache/doris/nereids/glue/translator/PhysicalPlanTranslatorTest.java index 04e59e6119f..938187fef2b 100644 --- a/fe/fe-core/src/test/java/org/apache/doris/nereids/glue/translator/PhysicalPlanTranslatorTest.java +++ b/fe/fe-core/src/test/java/org/apache/doris/nereids/glue/translator/PhysicalPlanTranslatorTest.java @@ -100,11 +100,11 @@ public class PhysicalPlanTranslatorTest extends TestWithFeService { String querySql = "select b from test_db.t group by b"; Planner planner = getSQLPlanner(querySql); Assertions.assertNotNull(planner); - + List<PlanFragment> fragments = planner.getFragments(); Assertions.assertNotNull(fragments); Assertions.assertFalse(fragments.isEmpty()); - + List<AggregationNode> aggNodes = new ArrayList<>(); for (PlanFragment fragment : fragments) { PlanNode root = fragment.getPlanRoot(); @@ -119,10 +119,10 @@ public class PhysicalPlanTranslatorTest extends TestWithFeService { AggregationNode lowerAggNode = aggNodes.get(1); boolean lowerNeedsFinalize = needsFinalizeField.getBoolean(lowerAggNode); - Assertions.assertFalse(lowerNeedsFinalize, + Assertions.assertFalse(lowerNeedsFinalize, "lower AggregationNode needsFinalize should be false"); boolean upperNeedsFinalize = needsFinalizeField.getBoolean(upperAggNode); - Assertions.assertTrue(upperNeedsFinalize, + Assertions.assertTrue(upperNeedsFinalize, "upper AggregationNode needsFinalize should be true"); } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
