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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to