Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request googleapis#3320 from roscoejp/master
Browse files Browse the repository at this point in the history
Update BQ Query parameter reference
tseaver authored Apr 27, 2017

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents 3501c26 + 20cc0f8 commit 2e499c2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion bigquery/google/cloud/bigquery/query.py
Original file line number Diff line number Diff line change
@@ -383,7 +383,14 @@ def fetch_data(self, max_results=None, page_token=None, start_index=None,
:type timeout_ms: int
:param timeout_ms:
(Optional) timeout, in milliseconds, to wait for query to complete
(Optional) How long to wait for the query to complete, in
milliseconds, before the request times out and returns. Note that
this is only a timeout for the request, not the query. If the query
takes longer to run than the timeout value, the call returns
without any results and with the 'jobComplete' flag set to false.
You can call GetQueryResults() to wait for the query to complete
and read the results. The default value is 10000 milliseconds (10
seconds).
:type client: :class:`~google.cloud.bigquery.client.Client` or
``NoneType``

0 comments on commit 2e499c2

Please sign in to comment.