You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by mo...@apache.org on 2022/06/29 02:40:19 UTC

[doris] branch master updated: [fix](ut)(nereids) the check bound function lacks recursive processing (#10357)

This is an automated email from the ASF dual-hosted git repository.

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 9aa800141d [fix](ut)(nereids) the check bound function lacks recursive processing (#10357)
9aa800141d is described below

commit 9aa800141dc0e41a116133f7092f6d1e5702fb94
Author: yinzhijian <37...@qq.com>
AuthorDate: Wed Jun 29 10:40:13 2022 +0800

    [fix](ut)(nereids) the check bound function lacks recursive processing (#10357)
---
 fe/fe-core/src/test/java/org/apache/doris/nereids/AnalyzeTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fe/fe-core/src/test/java/org/apache/doris/nereids/AnalyzeTest.java b/fe/fe-core/src/test/java/org/apache/doris/nereids/AnalyzeTest.java
index f4a472fe7a..fd8104476b 100644
--- a/fe/fe-core/src/test/java/org/apache/doris/nereids/AnalyzeTest.java
+++ b/fe/fe-core/src/test/java/org/apache/doris/nereids/AnalyzeTest.java
@@ -94,7 +94,7 @@ public class AnalyzeTest extends TestWithFeService {
 
         List<Plan> children = root.children();
         for (Plan child : children) {
-            if (!checkPlanNodeBound((LogicalPlan) child)) {
+            if (!checkBound((LogicalPlan) child)) {
                 return false;
             }
         }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org