Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions google/cloud/bigquery/job.py
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
Expand Up @@ -626,8 +626,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 @@ -1031,8 +1031,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