dabla commented on code in PR #61143:
URL: https://github.com/apache/airflow/pull/61143#discussion_r2749415447
##########
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:
I saw I forgot to remove process_rows method, it's refactored and DRY now.
--
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]