Skip to content

Commit

Permalink
Fix some typos and redundant Beta mark
Browse files Browse the repository at this point in the history
  • Loading branch information
plamut committed May 13, 2020
1 parent 4abd932 commit 530a5db
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion google/cloud/bigquery/dbapi/cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def _bqstorage_fetch(self, bqstorage_client):
bqstorage_client, bigquery_storage_v1beta1.BigQueryStorageClient
)

# We want to preserve comaptibility with the v1beta1 BQ Storage clients,
# We want to preserve compatibility with the v1beta1 BQ Storage clients,
# thus adjust the session creation if needed.
if is_v1beta1_client:
warnings.warn(
Expand Down
6 changes: 3 additions & 3 deletions google/cloud/bigquery/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -3267,9 +3267,9 @@ def to_arrow(
Use the :func:`tqdm.tqdm_gui` function to display a
progress bar as a graphical dialog box.
bqstorage_client (google.cloud.bigquery_storage_v1.BigQueryReadClient):
**Beta Feature** Optional. A BigQuery Storage API client. If
supplied, use the faster BigQuery Storage API to fetch rows
from BigQuery. This API is a billable API.
Optional. A BigQuery Storage API client. If supplied, use the
faster BigQuery Storage API to fetch rows from BigQuery.
This API is a billable API.
This method requires the ``pyarrow`` and
``google-cloud-bigquery-storage`` libraries.
Expand Down
4 changes: 2 additions & 2 deletions tests/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -1674,9 +1674,9 @@ def test_dbapi_fetch_w_bqstorage_client_large_result_set(self):
)
cursor = dbapi.connect(Config.CLIENT, bqstorage_client).cursor()

# Pick a large enouhg LIMIT value to assure that the fallback to the
# Pick a large enough LIMIT value to assure that the fallback to the
# default client is not needed due to the result set being too small
# (a known issue that causes problems when reding such result sets with
# (a known issue that causes problems when reading such result sets with
# BQ storage client).
cursor.execute(
"""
Expand Down

0 comments on commit 530a5db

Please sign in to comment.