autophagy commented on code in PR #26167:
URL: https://github.com/apache/flink/pull/26167#discussion_r1959596338


##########
flink-python/pyflink/table/table.py:
##########
@@ -1077,6 +1078,89 @@ def explain(self, *extra_details: ExplainDetail) -> str:
         j_extra_details = to_j_explain_detail_arr(extra_details)
         return self._j_table.explain(TEXT, j_extra_details)
 
+    def insert_into(
+        self, table_path_or_descriptor: Union[str, TableDescriptor], 
overwrite: bool = False
+    ) -> TablePipeline:
+        """
+        When ``target_path_or_descriptor`` is a table path:
+
+            Declares that the pipeline defined by the given :class:`Table` 
(backed by a

Review Comment:
   Is it not the docs for `Table.insertInto`? 
https://nightlies.apache.org/flink/flink-docs-release-2.0/api/java/org/apache/flink/table/api/Table.html#insertInto(java.lang.String)



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