@@ -317,8 +317,8 @@ def create_empty_table( # pylint: disable=too-many-arguments
317
317
https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#timePartitioning
318
318
:type time_partitioning: dict
319
319
:param cluster_fields: [Optional] The fields used for clustering.
320
- Must be specified with time_partitioning, data in the table will be first
321
- partitioned and subsequently clustered .
320
+ BigQuery supports clustering for both partitioned and
321
+ non- partitioned tables .
322
322
https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#clustering.fields
323
323
:type cluster_fields: list
324
324
:param view: [Optional] A dictionary containing definition for the view.
@@ -1624,8 +1624,8 @@ def run_load( # pylint: disable=too-many-locals,too-many-arguments,invalid-name
1624
1624
partition by field, type and expiration as per API specifications.
1625
1625
:type time_partitioning: dict
1626
1626
:param cluster_fields: Request that the result of this load be stored sorted
1627
- by one or more columns. This is only available in combination with
1628
- time_partitioning . The order of columns given determines the sort order.
1627
+ by one or more columns. BigQuery supports clustering for both partitioned and
1628
+ non-partitioned tables . The order of columns given determines the sort order.
1629
1629
:type cluster_fields: list[str]
1630
1630
:param encryption_configuration: [Optional] Custom encryption configuration (e.g., Cloud KMS keys).
1631
1631
**Example**: ::
@@ -2033,8 +2033,8 @@ def run_query(
2033
2033
partition by field, type and expiration as per API specifications.
2034
2034
:type time_partitioning: dict
2035
2035
:param cluster_fields: Request that the result of this query be stored sorted
2036
- by one or more columns. This is only available in combination with
2037
- time_partitioning . The order of columns given determines the sort order.
2036
+ by one or more columns. BigQuery supports clustering for both partitioned and
2037
+ non-partitioned tables . The order of columns given determines the sort order.
2038
2038
:type cluster_fields: list[str]
2039
2039
:param location: The geographic location of the job. Required except for
2040
2040
US and EU. See details at
0 commit comments