This is an automated email from the ASF dual-hosted git repository.
houqp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push:
new 2008b1d Update docs to note support for VARIANCE and STDDEV (#1543)
2008b1d is described below
commit 2008b1dc06d5030f572634c7f8f2ba48562fa636
Author: Andrew Lamb <[email protected]>
AuthorDate: Mon Jan 10 18:09:00 2022 -0500
Update docs to note support for VARIANCE and STDDEV (#1543)
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index bf8fc72..82089f1 100644
--- a/README.md
+++ b/README.md
@@ -266,9 +266,9 @@ This library currently supports many SQL constructs,
including
- `SELECT ... FROM ...` together with any expression
- `ALIAS` to name an expression
- `CAST` to change types, including e.g. `Timestamp(Nanosecond, None)`
-- most mathematical unary and binary expressions such as `+`, `/`, `sqrt`,
`tan`, `>=`.
+- 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`
+- `GROUP BY` together with one of the following aggregations: `MIN`, `MAX`,
`COUNT`, `SUM`, `AVG`, `VAR`, `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