This is an automated email from the ASF dual-hosted git repository.
morrysnow 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 680ee1c347f [fix](nereids) Fix logicalRepeat java type convert err
when start fe in ide (#58510)
680ee1c347f is described below
commit 680ee1c347f0e18e7b72a7835695e91813df3ed3
Author: seawinde <[email protected]>
AuthorDate: Mon Dec 1 11:32:33 2025 +0800
[fix](nereids) Fix logicalRepeat java type convert err when start fe in ide
(#58510)
Related PR: #57840
---
.../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]