This is an automated email from the ASF dual-hosted git repository.
jakevin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new 5e9dd44edd Minor: Change all file links to GitHub in document (#7768)
5e9dd44edd is described below
commit 5e9dd44edddfbd524b9d2dc7684d9880114a4fba
Author: Chih Wang <[email protected]>
AuthorDate: Sun Oct 8 15:17:41 2023 +0800
Minor: Change all file links to GitHub in document (#7768)
---
docs/source/library-user-guide/adding-udfs.md | 10 +++++-----
docs/source/library-user-guide/catalogs.md | 2 +-
docs/source/library-user-guide/working-with-exprs.md | 4 ++--
docs/source/user-guide/example-usage.md | 4 ++--
4 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/docs/source/library-user-guide/adding-udfs.md
b/docs/source/library-user-guide/adding-udfs.md
index d3f31bd45a..a4b5ed0b40 100644
--- a/docs/source/library-user-guide/adding-udfs.md
+++ b/docs/source/library-user-guide/adding-udfs.md
@@ -23,11 +23,11 @@ User Defined Functions (UDFs) are functions that can be
used in the context of D
This page covers how to add UDFs to DataFusion. In particular, it covers how
to add Scalar, Window, and Aggregate UDFs.
-| UDF Type | Description
| Example
|
-| --------- |
----------------------------------------------------------------------------------------------------------
| ---------------------------------------------------------------------- |
-| Scalar | A function that takes a row of data and returns a single value.
|
[simple_udf.rs](../../../datafusion-examples/examples/simple_udf.rs) |
-| Window | A function that takes a row of data and returns a single value,
but also has access to the rows around it. |
[simple_udwf.rs](../../../datafusion-examples/examples/simple_udwf.rs) |
-| Aggregate | A function that takes a group of rows and returns a single
value. |
[simple_udaf.rs](../../../datafusion-examples/examples/simple_udaf.rs) |
+| UDF Type | Description
| Example
|
+| --------- |
----------------------------------------------------------------------------------------------------------
|
------------------------------------------------------------------------------------------------------------------
|
+| Scalar | A function that takes a row of data and returns a single value.
|
[simple_udf.rs](https://github.com/apache/arrow-datafusion/blob/main/datafusion-examples/examples/simple_udf.rs)
|
+| Window | A function that takes a row of data and returns a single value,
but also has access to the rows around it. |
[simple_udwf.rs](https://github.com/apache/arrow-datafusion/blob/main/datafusion-examples/examples/simple_udwf.rs)
|
+| Aggregate | A function that takes a group of rows and returns a single
value. |
[simple_udaf.rs](https://github.com/apache/arrow-datafusion/blob/main/datafusion-examples/examples/simple_udaf.rs)
|
First we'll talk about adding an Scalar UDF end-to-end, then we'll talk about
the differences between the different types of UDFs.
diff --git a/docs/source/library-user-guide/catalogs.md
b/docs/source/library-user-guide/catalogs.md
index 1dd235f0a2..e53d163663 100644
--- a/docs/source/library-user-guide/catalogs.md
+++ b/docs/source/library-user-guide/catalogs.md
@@ -19,7 +19,7 @@
# Catalogs, Schemas, and Tables
-This section describes how to create and manage catalogs, schemas, and tables
in DataFusion. For those wanting to dive into the code quickly please see the
[example](../../../datafusion-examples/examples/catalog.rs).
+This section describes how to create and manage catalogs, schemas, and tables
in DataFusion. For those wanting to dive into the code quickly please see the
[example](https://github.com/apache/arrow-datafusion/blob/main/datafusion-examples/examples/catalog.rs).
## General Concepts
diff --git a/docs/source/library-user-guide/working-with-exprs.md
b/docs/source/library-user-guide/working-with-exprs.md
index 507e984acb..a8baf24d5f 100644
--- a/docs/source/library-user-guide/working-with-exprs.md
+++ b/docs/source/library-user-guide/working-with-exprs.md
@@ -52,8 +52,8 @@ As the writer of a library, you may want to use or create
`Expr`s to represent c
There are also executable examples for working with `Expr`s:
-- [rewrite_expr.rs](../../../datafusion-examples/examples/catalog.rs)
-- [expr_api.rs](../../../datafusion-examples/examples/expr_api.rs)
+-
[rewrite_expr.rs](https://github.com/apache/arrow-datafusion/blob/main/datafusion-examples/examples/rewrite_expr.rs)
+-
[expr_api.rs](https://github.com/apache/arrow-datafusion/blob/main/datafusion-examples/examples/expr_api.rs)
## A Scalar UDF Example
diff --git a/docs/source/user-guide/example-usage.md
b/docs/source/user-guide/example-usage.md
index c631d552dd..a7557f9b0b 100644
--- a/docs/source/user-guide/example-usage.md
+++ b/docs/source/user-guide/example-usage.md
@@ -19,9 +19,9 @@
# Example Usage
-In this example some simple processing is performed on the
[`example.csv`](../../../datafusion/core/tests/data/example.csv) file.
+In this example some simple processing is performed on the
[`example.csv`](https://github.com/apache/arrow-datafusion/blob/main/datafusion/core/tests/data/example.csv)
file.
-Even [`more code examples`](../../../datafusion-examples) attached to the
project
+Even [`more code
examples`](https://github.com/apache/arrow-datafusion/tree/main/datafusion-examples)
attached to the project.
## Update `Cargo.toml`