nathadfield commented on issue #34117:
URL: https://github.com/apache/airflow/issues/34117#issuecomment-1708630879
@Lee-W @ashokballolli In at least Google provider v10.6.0, what you see in
the log is the output of the whole configuration object. e.g.
```
test = BigQueryInsertJobOperator(
task_id='test',
configuration={
'query': {
'query': 'select true',
'useLegacySql': False,
}
}
)
```
```
[2023-09-06, 15:33:05 UTC] {bigquery.py:2792} INFO - Executing: {'query':
{'query': 'select true', 'useLegacySql': False}}'
```
So, it does contain the SQL although it is perhaps not that easy to
isolate. Not sure that warrants an additional logging step to specifically
pick out `query` though.
--
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]