If I am using a BigQueryOperator with a SQL Template, how could I pass an argument to the SQL?
File: .sql/query.sql
SELECT * FROM `dataset.{{ task_instance.variable_for_execution }}
File: dag.py
BigQueryOperator(
task_id='compare_tables',
sql='./sql/query.sql',
use_legacy_sql=False,
dag=dag,
)