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

yao pushed a commit to branch branch-3.4
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-3.4 by this push:
     new 64c26b7cb9b [MINOR][SQL][DOC] Fix incorrect link in sql menu and typo
64c26b7cb9b is described below

commit 64c26b7cb9b4c770a3e056404e05f6b6603746ee
Author: wforget <643348...@qq.com>
AuthorDate: Mon Aug 28 16:09:18 2023 +0800

    [MINOR][SQL][DOC] Fix incorrect link in sql menu and typo
    
    ### What changes were proposed in this pull request?
    
     Fix incorrect link in sql menu and typo.
    
    ### Why are the changes needed?
    
    ### Does this PR introduce _any_ user-facing change?
    
    No
    
    ### How was this patch tested?
    
    run `SKIP_API=1 bundle exec jekyll build`
    
    
![image](https://github.com/apache/spark/assets/17894939/7cc564ec-41cd-4e92-b19e-d33a53188a10)
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    No
    
    Closes #42697 from wForget/doc.
    
    Authored-by: wforget <643348...@qq.com>
    Signed-off-by: Kent Yao <y...@apache.org>
    (cherry picked from commit 421ff4e3c047865a1887cae94b85dbf40bb7bac9)
    Signed-off-by: Kent Yao <y...@apache.org>
---
 docs/_data/menu-sql.yaml    | 4 ++--
 docs/sql-getting-started.md | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/_data/menu-sql.yaml b/docs/_data/menu-sql.yaml
index bf7a88d90d0..86ab679d6dd 100644
--- a/docs/_data/menu-sql.yaml
+++ b/docs/_data/menu-sql.yaml
@@ -17,8 +17,8 @@
       url: sql-getting-started.html#interoperating-with-rdds
     - text: Scalar Functions
       url: sql-getting-started.html#scalar-functions
-    - text: Aggregations
-      url: sql-getting-started.html#aggregations
+    - text: Aggregate Functions
+      url: sql-getting-started.html#aggregate-functions
 - text: Data Sources
   url: sql-data-sources.html
   subitems:
diff --git a/docs/sql-getting-started.md b/docs/sql-getting-started.md
index 69396924e35..77d87fcb342 100644
--- a/docs/sql-getting-started.md
+++ b/docs/sql-getting-started.md
@@ -352,7 +352,7 @@ Scalar functions are functions that return a single value 
per row, as opposed to
 
 ## Aggregate Functions
 
-Aggregate functions are functions that return a single value on a group of 
rows. The [Built-in Aggregation 
Functions](sql-ref-functions-builtin.html#aggregate-functions) provide common 
aggregations such as `count()`, `count_distinct()`, `avg()`, `max()`, `min()`, 
etc.
+Aggregate functions are functions that return a single value on a group of 
rows. The [Built-in Aggregate 
Functions](sql-ref-functions-builtin.html#aggregate-functions) provide common 
aggregations such as `count()`, `count_distinct()`, `avg()`, `max()`, `min()`, 
etc.
 Users are not limited to the predefined aggregate functions and can create 
their own. For more details
 about user defined aggregate functions, please refer to the documentation of
 [User Defined Aggregate Functions](sql-ref-functions-udf-aggregate.html).


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

Reply via email to