dabla commented on code in PR #56041:
URL: https://github.com/apache/airflow/pull/56041#discussion_r2468929154
##########
providers/common/sql/tests/unit/common/sql/operators/test_generic_transfer.py:
##########
@@ -273,7 +273,7 @@ def test_non_paginated_read(self):
task_id="transfer_table",
source_conn_id="my_source_conn_id",
destination_conn_id="my_destination_conn_id",
- sql="SELECT * FROM HR.EMPLOYEES",
+ sql=["SELECT * FROM HR.EMPLOYEES"],
Review Comment:
Well actually it doesn't matter as the list or str for sql parameter is
handled by the hook anyway, not the operator, so it will put it back as it was.
--
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]