Skip to content

Commit 6167edf

Browse files
Change BigQuery super class from BaseQueryRunner to BaseSQLQueryRunner (#7378)
1 parent 4ed0ad3 commit 6167edf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

redash/query_runner/big_query.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
TYPE_FLOAT,
1313
TYPE_INTEGER,
1414
TYPE_STRING,
15-
BaseQueryRunner,
15+
BaseSQLQueryRunner,
1616
InterruptException,
1717
JobTimeoutException,
1818
register,
@@ -98,7 +98,7 @@ def _get_total_bytes_processed_for_resp(bq_response):
9898
return int(bq_response.get("totalBytesProcessed", "0"))
9999

100100

101-
class BigQuery(BaseQueryRunner):
101+
class BigQuery(BaseSQLQueryRunner):
102102
noop_query = "SELECT 1"
103103

104104
def __init__(self, configuration):

0 commit comments

Comments
 (0)