Skip to content

Commit

Permalink
fix: read_gbq large response issue (#332)
Browse files Browse the repository at this point in the history
* fix: read_gbq large size return issue

* delete temp test
  • Loading branch information
Genesis929 authored Jan 19, 2024
1 parent 972e924 commit b8178b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bigframes/session/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ def _query_to_destination(
try:
# Write to temp table to workaround BigQuery 10 GB query results
# limit. See: internal issue 303057336.
job_config.labels["error_caught"] = "True"
job_config.labels["error_caught"] = "true"
_, query_job = self._start_query(query, job_config=job_config)
return query_job.destination, query_job
except google.api_core.exceptions.BadRequest:
Expand Down

0 comments on commit b8178b9

Please sign in to comment.