This is an automated email from the ASF dual-hosted git repository.
yao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new 421ff4e3c04 [MINOR][SQL][DOC] Fix incorrect link in sql menu and typo
421ff4e3c04 is described below
commit 421ff4e3c047865a1887cae94b85dbf40bb7bac9
Author: wforget <[email protected]>
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`

### Was this patch authored or co-authored using generative AI tooling?
No
Closes #42697 from wForget/doc.
Authored-by: wforget <[email protected]>
Signed-off-by: Kent Yao <[email protected]>
---
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 62ad6a3a585..ff93f09a83c 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 4fb7e9071ce..ed2678fdcd4 100644
--- a/docs/sql-getting-started.md
+++ b/docs/sql-getting-started.md
@@ -357,7 +357,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: [email protected]
For additional commands, e-mail: [email protected]