Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update clustering field docstrings #286

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions google/cloud/bigquery/job.py
Expand Up @@ -1073,8 +1073,8 @@ def clustering_fields(self):

.. note::

As of 2018-06-29, clustering fields cannot be set on a table
which does not also have time partioning defined.
BigQuery supports clustering for both partitioned and
non-partitioned tables.
"""
prop = self._get_sub_prop("clustering")
if prop is not None:
Expand Down Expand Up @@ -2554,8 +2554,8 @@ def clustering_fields(self):

.. note::

As of 2018-06-29, clustering fields cannot be set on a table
which does not also have time partioning defined.
BigQuery supports clustering for both partitioned and
non-partitioned tables.
"""
prop = self._get_sub_prop("clustering")
if prop is not None:
Expand Down
8 changes: 4 additions & 4 deletions google/cloud/bigquery/table.py
Expand Up @@ -625,8 +625,8 @@ def clustering_fields(self):

.. note::

As of 2018-06-29, clustering fields cannot be set on a table
which does not also have time partioning defined.
BigQuery supports clustering for both partitioned and
non-partitioned tables.
"""
prop = self._properties.get("clustering")
if prop is not None:
Expand Down Expand Up @@ -1030,8 +1030,8 @@ def clustering_fields(self):

.. note::

As of 2018-06-29, clustering fields cannot be set on a table
which does not also have time partioning defined.
BigQuery supports clustering for both partitioned and
non-partitioned tables.
"""
prop = self._properties.get("clustering")
if prop is not None:
Expand Down