Skip to content

Commit 65435f2

Browse files
committed
Add links and fix nits for extensions
1 parent 38463c6 commit 65435f2

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,21 @@ pak::pak()
5959
### Developing with Extensions
6060

6161
If you wish to build or add extensions to the R package you first need to build duckdb with the `extension_static_build` flag.
62-
The following commands allow you to add the httpfs extension to a duckdb R build.
62+
The following commands allow you to add the [`httpfs` extension](https://duckdb.org/docs/extensions/httpfs) to a DuckDB R build.
6363
See the [extension ReadMe](https://github.com/duckdb/duckdb/tree/master/extension#readme) for more information about extensions
6464

6565
``` sh
6666
cd duckdb/
6767
EXTENSION_STATIC_BUILD=1 make
6868
```
6969

70-
Then in R
70+
Then in R, run:
7171

7272
``` r
7373
library(duckdb)
7474
con <- DBI::dbConnect(duckdb(config=list('allow_unsigned_extensions'='true')))
7575
dbExecute(con, "LOAD '{{path_to_duckdb}}/build/release/extension/httpfs/httpfs.duckdb_extension'")
7676
```
77+
78+
For more information about using extensions, see the [documentation on extensions](https://duckdb.org/docs/extensions/overview).
79+
For instructions on building them, see [extension README](https://github.com/duckdb/duckdb/tree/main/extension#readme).

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ revdepcheck::revdep_check(num_workers = 8, env=c(`MAKEVARS`="-j8"))
1818
## Source Package
1919
The R package does not automatically pick up the DuckDB version from the git tag. Make sure the file `DESCRIPTION` in the master branch has the `Version` entry that *you want to create*.
2020

21-
It's important that package builds are created from the main branch of the duckdb/duckdb repo (not of a fork) because otherwise the git revision ids used to install extensions are wrong.
21+
It's important that package builds are created from the `main` branch of the [duckdb/duckdb repository](https://github.com/duckdb/duckdb) (not of a fork) because otherwise the git revision ids used to install extensions are wrong.
2222

2323
You can get the R source tarball either from the build artifacts (r-package-source) or from a GitHub release after CI finishes (`duckdb_[version].tar.gz`).
2424

0 commit comments

Comments
 (0)