Schema modification giving partitioning error
问题 I have previously created a table in bigquery using following script in terraform resource "google_bigquery_dataset" "my-dataset" { dataset_id = "datasetname" description = "description" } resource "google_bigquery_table" "mytable" { dataset_id = google_bigquery_dataset.my-dataset.dataset_id table_id = "mytable" time_partitioning { type = "DAY" } schema = <<EOF [ { "name": "field_one", "type": "STRING", "mode": "NULLABLE" }, { "name": "field_two", "type": "RECORD", "mode": "NULLABLE", "fields