Skip to content

Commit

Permalink
Add missing parameter to new BigQuery query runner method.
Browse files Browse the repository at this point in the history
  • Loading branch information
jezdez committed Apr 30, 2019
1 parent 4f1b927 commit 7108af7
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 @@ -205,7 +205,7 @@ def _get_job_data(self, query):

def _get_query_result(self, jobs, query):
project_id = self._get_project_id()
job_data = self._get_job_data()
job_data = self._get_job_data(query)
insert_response = jobs.insert(projectId=project_id, body=job_data).execute()
current_row = 0
query_reply = _get_query_results(jobs, project_id=project_id, location=self._get_location(),
Expand Down

0 comments on commit 7108af7

Please sign in to comment.