bombsimon opened a new pull request, #1880:
URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1880

   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.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to