Skip to content

Commit

Permalink
Merge pull request googleapis#3320 from roscoejp/master
Browse files Browse the repository at this point in the history
Update BQ Query parameter reference
  • Loading branch information
tseaver authored Apr 27, 2017
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
Expand Up @@ -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``
Expand Down

0 comments on commit 2e499c2

Please sign in to comment.