Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b8178b9

Browse files
authoredJan 19, 2024
fix: read_gbq large response issue (#332)
* fix: read_gbq large size return issue * delete temp test
1 parent 972e924 commit b8178b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎bigframes/session/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ def _query_to_destination(
380380
try:
381381
# Write to temp table to workaround BigQuery 10 GB query results
382382
# limit. See: internal issue 303057336.
383-
job_config.labels["error_caught"] = "True"
383+
job_config.labels["error_caught"] = "true"
384384
_, query_job = self._start_query(query, job_config=job_config)
385385
return query_job.destination, query_job
386386
except google.api_core.exceptions.BadRequest:

0 commit comments

Comments
 (0)
Failed to load comments.