Kikyou1997 commented on code in PR #14201: URL: https://github.com/apache/doris/pull/14201#discussion_r1020741463
########## fe/fe-core/src/main/java/org/apache/doris/catalog/TableIf.java: ########## @@ -173,5 +175,17 @@ public String toMysqlType() { } } } + + default List<Column> getColumns() { + return Collections.emptyList(); + } + + default Set<String> getPartitionNames() { + return Collections.emptySet(); + } + + default Partition getPartition(String name) { + return null; + } Review Comment: I think so and that's why it has a default implementation -- 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