Skip to content

Commit 74909a2

Browse files
seawindeYour Name
authored andcommitted
[fix](nereids) Fix logicalRepeat java type convert err when start fe in ide (#58510)
Related PR: #57840
1 parent a1de24b commit 74909a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fe/fe-core/src/main/java/org/apache/doris/nereids/trees/copier/LogicalPlanDeepCopier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public Plan visitLogicalAggregate(LogicalAggregate<? extends Plan> aggregate, De
188188
.collect(ImmutableList.toImmutableList());
189189
LogicalAggregate<Plan> copiedAggregate = aggregate.withChildGroupByAndOutput(groupByExpressions,
190190
outputExpressions, child);
191-
Optional<LogicalRepeat<? extends Plan>> childRepeat =
191+
Optional<LogicalRepeat<?>> childRepeat =
192192
copiedAggregate.collectFirst(LogicalRepeat.class::isInstance);
193193
return childRepeat.isPresent() ? aggregate.withChildGroupByAndOutputAndSourceRepeat(
194194
groupByExpressions, outputExpressions, child, childRepeat)

0 commit comments

Comments
 (0)