10BC0 Correcting client.query to clinet.query_and_wait · googleapis/python-bigquery@41a6ac6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 41a6ac6

Browse files
committed
Correcting client.query to clinet.query_and_wait
1 parent f37ad32 commit 41a6ac6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/client_query_w_timestamp_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def client_query_w_timestamp_params() -> None:
3333
)
3434
]
3535
)
36-
query_job = client.query(query, job_config=job_config) # Make an API request.
36+
query_job = client.query_and_wait(query, job_config=job_config) # Make an API request.
3737

3838
for row in query_job:
3939
print(row)

0 commit comments

Comments
 (0)
0