davidradl commented on code in PR #26385:
URL: https://github.com/apache/flink/pull/26385#discussion_r2144503917


##########
flink-python/pyflink/table/table_environment.py:
##########
@@ -719,6 +746,36 @@ def drop_view(self, view_path: str, ignore_if_not_exists: 
Optional[bool] = True)
         """
         return self._j_tenv.dropView(view_path, ignore_if_not_exists)
 
+    def drop_temporary_model(self, model_path: str) -> bool:
+        """
+        Drops a temporary model registered in the given path.
+
+        If a permanent model with a given path exists, it will be used
+        from now on for any queries that reference this path.

Review Comment:
   nit: this path -> model_path



-- 
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

Reply via email to