This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit a82c6e869e3ed410aa1af32f0ba1e57e358092d2 Author: morrySnow <101034200+morrys...@users.noreply.github.com> AuthorDate: Mon May 27 09:56:52 2024 +0800 [fix](Nereids) LogicalEmptyRelation type is wrong (#35382) --- .../apache/doris/nereids/trees/plans/logical/LogicalEmptyRelation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/logical/LogicalEmptyRelation.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/logical/LogicalEmptyRelation.java index 4ed218410d9..e4ba668378c 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/logical/LogicalEmptyRelation.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/logical/LogicalEmptyRelation.java @@ -51,7 +51,7 @@ public class LogicalEmptyRelation extends LogicalRelation public LogicalEmptyRelation(RelationId relationId, List<? extends NamedExpression> projects, Optional<GroupExpression> groupExpression, Optional<LogicalProperties> logicalProperties) { - super(relationId, PlanType.LOGICAL_ONE_ROW_RELATION, groupExpression, logicalProperties); + super(relationId, PlanType.LOGICAL_EMPTY_RELATION, groupExpression, logicalProperties); this.projects = ImmutableList.copyOf(Objects.requireNonNull(projects, "projects can not be null")); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org