You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| range_partitioning.field | string | required | nil |`INT64` column used for partitioning |
115
115
| range-partitioning.range | hash | required | nil | Defines the ranges for range paritioning |
116
-
| range-partitioning.range.start |string| required | nil | The start of range partitioning, inclusive. This field is an INT64 value represented as a string. |
117
-
| range-partitioning.range.end |string| required | nil | The end of range partitioning, exclusive. This field is an INT64 value represented as a string. |
118
-
| range-partitioning.range.interval|string| required | nil | The width of each interval. This field is an INT64 value represented as a string. |
116
+
| range-partitioning.range.start |int| required | nil | The start of range partitioning, inclusive. |
117
+
| range-partitioning.range.end |int| required | nil | The end of range partitioning, exclusive. |
118
+
| range-partitioning.range.interval|int| required | nil | The width of each interval. |
119
119
| clustering | hash | optional | nil | Currently, clustering is supported for partitioned tables, so must be used with `time_partitioning` option. See [clustered tables](https://cloud.google.com/bigquery/docs/clustered-tables)|
120
120
| clustering.fields | array | required | nil | One or more fields on which data should be clustered. The order of the specified columns determines the sort order of the data. |
121
121
| schema_update_options | array | optional | nil | (Experimental) List of `ALLOW_FIELD_ADDITION` or `ALLOW_FIELD_RELAXATION` or both. See [jobs#configuration.load.schemaUpdateOptions](https://cloud.google.com/bigquery/docs/reference/v2/jobs#configuration.load.schemaUpdateOptions). NOTE for the current status: `schema_update_options` does not work for `copy` job, that is, is not effective for most of modes such as `append`, `replace` and `replace_backup`. `delete_in_advance` deletes origin table so does not need to update schema. Only `append_direct` can utilize schema update. |
0 commit comments