List motherduck extensions, their description and status
list_extensions.RdLists available DuckDB extensions, their description, load / installed status and more
Examples
con <- DBI::dbConnect(duckdb::duckdb())
list_extensions(con)
#> # A tibble: 25 × 9
#> extension_name loaded installed install_path description aliases
#> <chr> <lgl> <lgl> <chr> <chr> <list>
#> 1 autocomplete FALSE FALSE "" Adds support for autoco… <chr>
#> 2 aws FALSE FALSE "" Provides features that … <chr>
#> 3 azure FALSE FALSE "" Adds a filesystem abstr… <chr>
#> 4 core_functions TRUE TRUE "(BUILT-IN)" Core function library <chr>
#> 5 delta FALSE FALSE "" Adds support for Delta … <chr>
#> 6 ducklake FALSE FALSE "" Adds support for DuckLa… <chr>
#> 7 encodings FALSE FALSE "" All unicode encodings t… <chr>
#> 8 excel FALSE FALSE "" Adds support for Excel-… <chr>
#> 9 fts FALSE FALSE "" Adds support for Full-T… <chr>
#> 10 httpfs FALSE FALSE "" Adds support for readin… <chr>
#> # ℹ 15 more rows
#> # ℹ 3 more variables: extension_version <chr>, install_mode <chr>,
#> # installed_from <chr>