dabla commented on code in PR #61143:
URL: https://github.com/apache/airflow/pull/61143#discussion_r2749285608


##########
providers/common/sql/src/airflow/providers/common/sql/operators/generic_transfer.py:
##########
@@ -139,6 +142,16 @@ def render_template_fields(
         if isinstance(commit_every, str):
             self.insert_args["commit_every"] = int(commit_every)
 
+    def _process_rows(self, rows: list[Any], context: Context):
+        return self._rows_processor(rows, **context)  # type: ignore
+
+    def _insert_rows(self, rows: list[Any], context: Context):

Review Comment:
   No, this method is also used in the execute_complete method, hence why I 
made a re-usable method.



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