sunank200 commented on code in PR #59915:
URL: https://github.com/apache/airflow/pull/59915#discussion_r2652352587
##########
providers/exasol/src/airflow/providers/exasol/hooks/exasol.py:
##########
@@ -96,6 +100,10 @@ def sqlalchemy_url(self) -> URL:
:return: the extracted sqlalchemy.engine.URL object.
"""
+ if URL is None:
+ raise AirflowOptionalProviderFeatureException(
Review Comment:
```suggestion
raise AirflowOptionalProviderFeatureException(
"sqlalchemy is required for SQL filter clause generation. "
"Install it with: pip install
'apache-airflow-providers-exasol[sqlalchemy]'"
)
```
--
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]