JingsongLi commented on a change in pull request #18088: URL: https://github.com/apache/flink/pull/18088#discussion_r769195266
########## File path: flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/catalog/CatalogManager.java ########## @@ -686,7 +701,14 @@ public void createTemporaryTable( } return v; } else { - final CatalogBaseTable resolvedTable = resolveCatalogBaseTable(table); + ResolvedCatalogBaseTable<?> resolvedTable = + managedTableListener.notifyTableCreation( + getCatalog(objectIdentifier.getCatalogName()).orElse(null), + objectIdentifier, + resolveCatalogBaseTable(table), + true, Review comment: Our temporary tables can be catalog-owned, I remember this is why we do: https://issues.apache.org/jira/browse/FLINK-21185 -- 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