davidradl commented on code in PR #26385: URL: https://github.com/apache/flink/pull/26385#discussion_r2144501283
########## flink-python/pyflink/table/table_environment.py: ########## @@ -659,6 +660,32 @@ def list_temporary_views(self) -> List[str]: j_view_name_array = self._j_tenv.listTemporaryViews() return [item for item in j_view_name_array] + def list_models(self) -> List[str]: + """ + Gets the names of all model available in the current namespace (the current Review Comment: nit: does this include temporary models. In terms of wording, what is an unregistered model? -- 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