andygrove commented on code in PR #3131: URL: https://github.com/apache/arrow-datafusion/pull/3131#discussion_r945168283
########## docs/source/user-guide/sql/sql_status.md: ########## @@ -143,104 +143,3 @@ DataFusion is designed to be extensible at all points. To that end, you can prov ## Rust Version Compatibility This crate is tested with the latest stable version of Rust. We do not currently test against other, older versions of the Rust compiler. - -# Supported SQL - -This library currently supports many SQL constructs, including - -- `CREATE EXTERNAL TABLE X STORED AS PARQUET LOCATION '...';` to register a table's locations -- `SELECT ... FROM ...` together with any expression -- `ALIAS` to name an expression -- `CAST` to change types, including e.g. `Timestamp(Nanosecond, None)` -- Many mathematical unary and binary expressions such as `+`, `/`, `sqrt`, `tan`, `>=`. -- `WHERE` to filter -- `GROUP BY` together with one of the following aggregations: `MIN`, `MAX`, `COUNT`, `SUM`, `AVG`, `CORR`, `VAR`, `COVAR`, `STDDEV` (sample and population) -- `ORDER BY` together with an expression and optional `ASC` or `DESC` and also optional `NULLS FIRST` or `NULLS LAST` - -## Supported Functions Review Comment: Removed this since most of the functions are now documented in the SQL reference -- 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]
