gustavodemorais commented on code in PR #25704: URL: https://github.com/apache/flink/pull/25704#discussion_r1862771988
########## flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/api/TableEnvironment.java: ########## @@ -718,6 +718,36 @@ void createTemporarySystemFunction( */ void createTemporaryTable(String path, TableDescriptor descriptor); + /** + * Registers the given {@link TableDescriptor} as a temporary catalog table. + * + * <p>The {@link TableDescriptor descriptor} is converted into a {@link CatalogTable} and stored + * in the catalog. + * + * <p>Temporary objects can shadow permanent ones. If a permanent object in a given path exists, Review Comment: - https://nightlies.apache.org/flink/flink-docs-master/docs/dev/table/common/#temporary-vs-permanent-tables - I agree that `tables` instead of `objects` would be easier to digest in this context. On the other hand, the temporary objects concept seems to exist for multiple resources, like views, and having the same sentence might help people recognize this as being the same pattern. I have no strong opinion here though. -- 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