我正在尝试从Java api更改字段的描述。 我无法做到这一点。
有关表的描述已使用
com.google.cloud.bigquery.Table beforeTable = bigquery.getTable(datasetId, tableName);
TableInfo tableInfo = beforeTable.toBuilder().setDescription("test").build();
com.google.cloud.bigquery.Table afterTable = bigquery.update(tableInfo);
我还需要更改字段说明。