JingsongLi commented on a change in pull request #18088: URL: https://github.com/apache/flink/pull/18088#discussion_r769432588
########## File path: flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/Catalog.java ########## @@ -311,6 +311,15 @@ void createTable(ObjectPath tablePath, CatalogBaseTable table, boolean ignoreIfE void alterTable(ObjectPath tablePath, CatalogBaseTable newTable, boolean ignoreIfNotExists) throws TableNotExistException, CatalogException; + /** + * If true, tables which do not specify a connector will be translated to managed tables. + * + * @see CatalogBaseTable.TableKind#MANAGED + */ + default boolean supportsManagedTable() { Review comment: There are some catalogs that already use table without connector as their catalog internal table. -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org