eladkal commented on code in PR #48866:
URL: https://github.com/apache/airflow/pull/48866#discussion_r2073054850
##########
providers/common/sql/src/airflow/providers/common/sql/operators/generic_transfer.py:
##########
@@ -98,9 +101,7 @@ def __init__(
self.preoperator = preoperator
self.insert_args = insert_args or {}
self.page_size = page_size
- self._paginated_sql_statement_format = kwargs.get(
- "paginated_sql_statement_format", "{} LIMIT {} OFFSET {}"
- )
+ self.paginated_sql_statement_format = paginated_sql_statement_format
or "{} LIMIT {} OFFSET {}"
Review Comment:
Some databases use `TOP` / `FETCH FIRST` rather than `LIMIT`.
How will this work for them?
--
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]