Is there a way to set up an external table in BigQuery on a few JSON files (stored in Google Cloud Storage) with different schemas? I would have files with the schemas:
| field_name | type | mode |
|---|---|---|
| laps | record | repeated |
| waypoints | record | repeated |
| col1 | string | nullable |
| col2 | string | nullable |
| col3 | integer | nullable |
| field_name | type | mode |
|---|---|---|
| laps | record | repeated |
| waypoints | record | repeated |
| col1 | string | nullable |
| col2 | string | nullable |
| col3 | integer | nullable |
| col4 | float | nullable |
| col5 | timestemp | nullable |
so, the new attributes will be only added to the end.