Skip to content

Commit

Permalink
[AIRFLOW-2994] Fix flatten_results for BigQueryOperator (apache#3829)
Browse files Browse the repository at this point in the history
  • Loading branch information
criccomini authored and ashb committed Oct 22, 2018
1 parent bde5bff commit e7f73d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion airflow/contrib/hooks/bigquery_hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ def run_query(self,
destination_dataset_table=False,
write_disposition='WRITE_EMPTY',
allow_large_results=False,
flatten_results=False,
flatten_results=None,
udf_config=False,
use_legacy_sql=None,
maximum_billing_tier=None,
Expand Down
2 changes: 1 addition & 1 deletion airflow/contrib/operators/bigquery_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def __init__(self,
destination_dataset_table=False,
write_disposition='WRITE_EMPTY',
allow_large_results=False,
flatten_results=False,
flatten_results=None,
bigquery_conn_id='bigquery_default',
delegate_to=None,
udf_config=False,
Expand Down

0 comments on commit e7f73d2

Please sign in to comment.