Nothing
test_that("extensions installation", {
load_httpfs(nightly=FALSE, force = FALSE)
exts <- duckdb_extensions()
status <- exts[exts$extension_name == "httpfs",]
expect_true(status$installed)
expect_equal(status$installed_from, "core")
load_spatial(nightly = FALSE, force = TRUE)
exts <- duckdb_extensions()
status <- exts[exts$extension_name == "httpfs",]
expect_true(status$installed)
expect_equal(status$installed_from, "core")
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.