You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/07/30 04:46:06 UTC

[GitHub] [airflow] uranusjr commented on issue #13750: Support Standard SQL in BigQuery Sensor

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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org