morningman commented on code in PR #23317: URL: https://github.com/apache/doris/pull/23317#discussion_r1301775612
########## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/logical/LogicalTVFRelation.java: ########## @@ -39,16 +39,19 @@ public class LogicalTVFRelation extends LogicalRelation implements TVFRelation { private final TableValuedFunction function; + private final ImmutableList<String> qualifier; public LogicalTVFRelation(RelationId id, TableValuedFunction function) { super(id, PlanType.LOGICAL_TVF_RELATION); this.function = function; + qualifier = ImmutableList.of("_table_valued_function_" + function.getName()); Review Comment: How about using a shorten prefix? eg: _tvf_ ? -- 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