Skip to content

Commit e16498a

Browse files
committed
Merge pull request #6080 from dsm054/fix-gbq-bigqueryerror
BUG: fix broken BigqueryError reference
2 parents 464c1f9 + dfd15da commit e16498a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/gbq.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ def _parse_data(client, job, index_col=None, col_order=None):
288288
kwds['startIndex'] = start_row
289289
data = client.apiclient.jobs().getQueryResults(**kwds).execute()
290290
if not data['jobComplete']:
291-
raise BigqueryError('Job was not completed, or was invalid')
291+
raise bigquery_client.BigqueryError('Job was not completed, or was invalid')
292292

293293
# How many rows are there across all pages?
294294
# Note: This is presently the only reason we don't just use

0 commit comments

Comments
 (0)