This is an automated email from the ASF dual-hosted git repository.
morrysnow pushed a commit to branch branch-3.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.1 by this push:
new 7d06dfefbb4 branch-3.1: [fix](nereids) Fix logicalRepeat java type
convert err when start fe in ide #58510 (#58548)
7d06dfefbb4 is described below
commit 7d06dfefbb4db7510bfdf01240b1a422f6580167
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Dec 2 14:28:38 2025 +0800
branch-3.1: [fix](nereids) Fix logicalRepeat java type convert err when
start fe in ide #58510 (#58548)
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 15ceb8c1f8b..c341ad20179 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
@@ -153,7 +153,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]