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

yiguolei pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-4.0 by this push:
     new 0a0ec5ba91d branch-4.0: [fix](nereids) Fix logicalRepeat java type 
convert err when start fe in ide #58510 (#58549)
0a0ec5ba91d is described below

commit 0a0ec5ba91d127a6e4814f68139c188f351e0b61
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Dec 2 10:11:08 2025 +0800

    branch-4.0: [fix](nereids) Fix logicalRepeat java type convert err when 
start fe in ide #58510 (#58549)
    
    Cherry-picked from #58510
    
    Co-authored-by: seawinde <[email protected]>
---
 .../org/apache/doris/nereids/trees/copier/LogicalPlanDeepCopier.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/copier/LogicalPlanDeepCopier.java
 
b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/copier/LogicalPlanDeepCopier.java
index 5c5b98b26d7..71984291d9c 100644
--- 
a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/copier/LogicalPlanDeepCopier.java
+++ 
b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/copier/LogicalPlanDeepCopier.java
@@ -188,7 +188,7 @@ public class LogicalPlanDeepCopier extends 
DefaultPlanRewriter<DeepCopierContext
                 .collect(ImmutableList.toImmutableList());
         LogicalAggregate<Plan> copiedAggregate = 
aggregate.withChildGroupByAndOutput(groupByExpressions,
                 outputExpressions, child);
-        Optional<LogicalRepeat<? extends Plan>> childRepeat =
+        Optional<LogicalRepeat<?>> childRepeat =
                 copiedAggregate.collectFirst(LogicalRepeat.class::isInstance);
         return childRepeat.isPresent() ? 
aggregate.withChildGroupByAndOutputAndSourceRepeat(
                 groupByExpressions, outputExpressions, child, childRepeat)


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to