Skip to content

Commit

Permalink
BigQuery: support for NaN values. (#3701)
Browse files Browse the repository at this point in the history
  • Loading branch information
arikfr authored Apr 14, 2019
1 parent af168c6 commit 3ab46bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redash/query_runner/big_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def run_query(self, query, user):
data = self._get_query_result(jobs, query)
error = None

json_data = json_dumps(data)
json_data = json_dumps(data, ignore_nan=True)
except apiclient.errors.HttpError as e:
json_data = None
if e.resp.status == 400:
Expand Down

0 comments on commit 3ab46bb

Please sign in to comment.