This is an automated email from the ASF dual-hosted git repository.
alamb 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 ef601d2caa minor(doc): fix dead link for catalogs example (#9883)
ef601d2caa is described below
commit ef601d2caa7f62cc5c6dde7bb7c371a1e298c2fb
Author: Yijie Shen <[email protected]>
AuthorDate: Sun Mar 31 02:41:57 2024 -0700
minor(doc): fix dead link for catalogs example (#9883)
---
datafusion/core/src/catalog/mod.rs | 2 +-
docs/source/library-user-guide/catalogs.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/datafusion/core/src/catalog/mod.rs
b/datafusion/core/src/catalog/mod.rs
index 8aeeaf9f72..d39fad8a56 100644
--- a/datafusion/core/src/catalog/mod.rs
+++ b/datafusion/core/src/catalog/mod.rs
@@ -177,7 +177,7 @@ impl CatalogProviderList for MemoryCatalogProviderList {
///
/// [`datafusion-cli`]: https://arrow.apache.org/datafusion/user-guide/cli.html
/// [`DynamicFileCatalogProvider`]:
https://github.com/apache/arrow-datafusion/blob/31b9b48b08592b7d293f46e75707aad7dadd7cbc/datafusion-cli/src/catalog.rs#L75
-/// [`catalog.rs`]:
https://github.com/apache/arrow-datafusion/blob/main/datafusion-examples/examples/external_dependency/catalog.rs
+/// [`catalog.rs`]:
https://github.com/apache/arrow-datafusion/blob/main/datafusion-examples/examples/catalog.rs
/// [delta-rs]: https://github.com/delta-io/delta-rs
/// [`UnityCatalogProvider`]:
https://github.com/delta-io/delta-rs/blob/951436ecec476ce65b5ed3b58b50fb0846ca7b91/crates/deltalake-core/src/data_catalog/unity/datafusion.rs#L111-L123
///
diff --git a/docs/source/library-user-guide/catalogs.md
b/docs/source/library-user-guide/catalogs.md
index 06cd2765d1..d30e26f196 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](https://github.com/apache/arrow-datafusion/blob/main/datafusion-examples/examples/external_dependency/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