sohardforaname commented on code in PR #11035: URL: https://github.com/apache/doris/pull/11035#discussion_r934219797
########## fe/fe-core/src/main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java: ########## @@ -207,11 +213,33 @@ public LogicalPlan visitRegularQuerySpecification(RegularQuerySpecificationConte /** * Create an aliased table reference. This is typically used in FROM clauses. */ + @Developing + private LogicalPlan withTableAlias(LogicalPlan plan, TableAliasContext ctx) { + String alias = ctx.strictIdentifier().getText(); + if (null != ctx.identifierList()) { + throw new ParseException("Do not implemented", ctx); + // TODO: multi-colName + } + return new LogicalSubQueryAlias<>(alias, plan); + } + @Override public LogicalPlan visitTableName(TableNameContext ctx) { List<String> tableId = visitMultipartIdentifier(ctx.multipartIdentifier()); - // TODO: sample and time travel, alias, sub query - return new UnboundRelation(tableId); + if (null == ctx.tableAlias().strictIdentifier()) { + return new UnboundRelation(tableId); + } + return withTableAlias(new UnboundRelation(tableId), ctx.tableAlias()); + } + + @Override + public LogicalPlan visitAliasedQuery(AliasedQueryContext ctx) { + return withTableAlias(visitQuery(ctx.query()), ctx.tableAlias()); + } + + @Override + public LogicalPlan visitAliasedRelation(AliasedRelationContext ctx) { + return withTableAlias((LogicalPlan) visitRelation(ctx.relation()), ctx.tableAlias()); Review Comment: what does abstract mean? change visitRelation to visitFromClause? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org