【发布时间】:2020-01-13 15:35:54
【问题描述】:
BigQuery manual 表示只能添加新字段,而不能修改现有字段。我的问题是是否可以将现有字段添加到记录字段中。 假设原始架构是:
{"type":"RECORD","name":"record","mode":"REPEATED"
"fields":[
{"type":"STRING","name":"f1","mode":"NULLABLE"}
]
}
我想添加 f2,所以架构是:
{"type":"RECORD","name":"record","mode":"REPEATED"
"fields":[
{"type":"STRING","name":"f1","mode":"NULLABLE"},
{"type":"STRING","name":"f2","mode":"NULLABLE"}
]
}
有可能吗?
【问题讨论】:
标签: google-bigquery