Skip to content

Commit

Permalink
[AIRFLOW-2994] Fix flatten_results for BigQueryOperator (#3829)
Browse files Browse the repository at this point in the history
  • Loading branch information
criccomini authored and Joy Gao committed Aug 31, 2018
1 parent ba27fca commit 98a7874
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 @@ -476,7 +476,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 98a7874

Please sign in to comment.