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
Support DISTINCT AS { STRUCT | VALUE } for BigQuery
According to the query syntax at
https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax#select_list
you can combine `[ { ALL | DISTINCT } ]` with `[ AS { STRUCT | VALUE } ]`:
```sh
SELECT
[ WITH differential_privacy_clause ]
[ { ALL | DISTINCT } ]
[ AS { STRUCT | VALUE } ]
select_list
```
This adds support to parse `DISTINCT` or `ALL` as the first keyword
after `SELECT` and adds two new variants to the `ValueTableMode` if
defined.
0 commit comments