davidradl commented on code in PR #26385: URL: https://github.com/apache/flink/pull/26385#discussion_r2022528177
########## flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/api/TableEnvironment.java: ########## @@ -1212,6 +1297,44 @@ void createTemporarySystemFunction( */ boolean dropView(String path, boolean ignoreIfNotExists); + /** + * Drops a model registered in the given path. + * + * <p>This method can only drop permanent objects. Temporary objects can shadow permanent ones. + * If a temporary object exists in a given path, make sure to drop the temporary object first + * using {@link #dropTemporaryModel}. + * + * @param path The given path under which the model will be dropped. See also the {@link + * TableEnvironment} class description for the format of the path. + */ + boolean dropModel(String path); + + /** + * Drops a model registered in the given path. Review Comment: no need for given -- 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