uranusjr commented on issue #13750:
URL: https://github.com/apache/airflow/issues/13750#issuecomment-889624601
We should probably support passing arguments from a sensor to the underlying
hook. Something like this?
```python
sense_data = SqlSensor(
task_id="sense_data",
conn_id="google_default",
hook_kwargs={"use_legacy_sql": False},
sql="select count(*) > 0 from `my_dataset.my_view`",
)
```
--
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]