We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2e1c7d commit 2e4af92Copy full SHA for 2e4af92
google/cloud/bigquery/_job_helpers.py
@@ -156,7 +156,9 @@ def _to_query_job(
156
job_complete = query_response.get("jobComplete")
157
if job_complete:
158
query_job._properties["status"]["state"] = "DONE"
159
- # TODO: set first page of results if job is "complete"
+ # TODO: set first page of results if job is "complete" (and there is
160
+ # only 1 page of results? otherwise, need some awkward logic
161
+ # for DB API and to_dataframe to get destination table)
162
else:
163
query_job._properties["status"]["state"] = "PENDING"
164
0 commit comments