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


##########
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:
   model_path is just argument name. There is no object defined as model path 
in flink context, there is only path for all objects. I don't think model path 
will be confusing



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to