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


##########
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:
   Actually, there is no separate test needed for this, as this single sql 
statement or multiple sql statement is handled by the get_records method of the 
DbApiHook.  Also, I've passed a list of sql to the non paginated read and and a 
single sql to the paginated one, so both cases are covered anyway.



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