You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2022/05/18 11:19:10 UTC

[arrow-site] branch master updated: minor updates to DataFusion 8.0.0 blog post (#218)

This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 54bab3020d minor updates to DataFusion 8.0.0 blog post (#218)
54bab3020d is described below

commit 54bab3020d88e670616aee63c184f5d336a963da
Author: Andy Grove <ag...@apache.org>
AuthorDate: Wed May 18 05:19:07 2022 -0600

    minor updates to DataFusion 8.0.0 blog post (#218)
---
 _posts/2022-05-16-datafusion-8.0.0.md | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/_posts/2022-05-16-datafusion-8.0.0.md b/_posts/2022-05-16-datafusion-8.0.0.md
index b38d41dd25..e20a41858d 100644
--- a/_posts/2022-05-16-datafusion-8.0.0.md
+++ b/_posts/2022-05-16-datafusion-8.0.0.md
@@ -102,7 +102,7 @@ $ git shortlog -sn 7.0.0..8.0.0 datafusion datafusion-cli datafusion-examples ba
      1  doki
 ```
 
-The following sections highlight some of changes in this release. Of course, many other bug fixes and
+The following sections highlight some of the changes in this release. Of course, many other bug fixes and
 improvements have been made and we encourage you to check out the
 [changelog](https://github.com/apache/arrow-datafusion/blob/8.0.0/datafusion/CHANGELOG.md) for full details.
 
@@ -126,15 +126,16 @@ The SQL query planner now supports a number of new SQL features, including:
 - _Grouping Sets_: `CUBE` and `ROLLUP` grouping sets.
 - _Aggregate functions_: `approx_percentile`, `approx_percentile_cont`, `approx_percentile_cont_with_weight`, `approx_distinct`, `approx_median` and `array`
 - _`null` literals_
-- _bitwise operations_: for example '|'
+- _bitwise operations_: for example '`|`'
 
 There are also many bug fixes and improvements around normalizing identifiers consistently.
 
 We continue our tradition of incrementally releasing support for new
-features as it is developed. Thus, while the physical plan may not yet
+features as they are developed. Thus, while the physical plan may not yet
 support all new features, it gets more complete each release. These
 changes also make DataFusion an increasingly compelling choice for
-projects looking for a SQL parser and query planner to translate to
+projects looking for a SQL parser and query planner that can produce
+optimized logical plans that can be translated to
 their own execution engine.
 
 ## Query Execution & Internals