kazanzhy commented on code in PR #25299:
URL: https://github.com/apache/airflow/pull/25299#discussion_r930320914


##########
airflow/providers/exasol/hooks/exasol.py:
##########
@@ -89,7 +91,7 @@ def get_records(self, sql: str, parameters: Optional[dict] = 
None) -> List[Union
             with closing(conn.execute(sql, parameters)) as cur:
                 return cur.fetchall()
 
-    def get_first(self, sql: str, parameters: Optional[dict] = None) -> 
Optional[Any]:
+    def get_first(self, sql: Union[str, List[str]], parameters: Optional[dict] 
= None) -> Optional[Any]:

Review Comment:
   ```suggestion
       def get_first(self, sql: Union[str, List[str]], parameters: 
Optional[Union[Iterable, Mapping]] = None) -> Optional[Any]:
   ```



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