Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.
6 changes: 4 additions & 2 deletions samples/client_query_w_timestamp_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@ def client_query_w_timestamp_params() -> None:
)
]
)
query_job = client.query(query, job_config=job_config) # Make an API request.
results = client.query_and_wait(
query, job_config=job_config
) # Make an API request.

for row in query_job:
for row in results:
print(row)
# [END bigquery_query_params_timestamps]