XD-DENG commented on a change in pull request #13847:
URL: https://github.com/apache/airflow/pull/13847#discussion_r563157195
##########
File path: airflow/providers/exasol/hooks/exasol.py
##########
@@ -108,6 +108,37 @@ def get_first(self, sql: Union[str, list], parameters:
Optional[dict] = None) ->
with closing(conn.execute(sql, parameters)) as cur:
return cur.fetchone()
+ def export_to_file(
Review comment:
I think what @turbaszek has nicely done here is to allow Exasol users to
seamlessly call what `pyexasol` supports. Please refer to
https://github.com/badoo/pyexasol/blob/master/pyexasol/connection.py#L259
I don't know Exasol well, but based on the implementation here, this new
method supports whatever the original method in `Pyexasol` supports. So to my
understanding, the question you raised should not be a concern.
Let me know if this makes sense to you?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]