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

   This implements "FROM-first" selects.  DuckDB and Clickhouse support this 
syntax where `FROM` can be placed before `SELECT`.  To disambiguate these cases 
for formatting I added a new `SelectFlavor` enum:
   
   * `SelectFlavor::Standard`: `SELECT *`
   * `SelectFlavor::FromFirst`: `FROM ... SELECT *`
   * `SelectFlavor::FromFirstNoSelect`: `FROM ...` (implied `SELECT`)
   
   I'm not sure if this is the right approach.
   
   Refs #1400


-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to