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
Fix parsing error when having fields after nested struct in BigQuery
Before applying this patch, the following SQL cannot be parsed:
```SQL
CREATE TABLE my_table (
f0 STRING,
f1 STRUCT<a STRING, b STRUCT<c INT64, d STRING>>,
f2 STRING,
)
```
But it's a valid SQL in BigQuery. The root cause is having comma after
the trailing bracket will be reconigized as a mismatched closing.
0 commit comments