Nothing
drv <- duckdb(tempfile(fileext = ".duckdb"))
reg.finalizer(drv@database_ref, function(x) {
unlink(drv@dbdir, force = TRUE)
})
# remotes::install_github("r-dbi/dblog")
# Then, use DBItest::test_some() to see the DBI calls emitted by the tests
#
# This call must stay here, otherwise DBItest::test_some() doesn't work
if (rlang::is_installed("DBItest")) DBItest::make_context(
drv,
# dblog::dblog(drv),
list(debug = FALSE),
tweaks = DBItest::tweaks(
dbitest_version = "1.8.1",
omit_blob_tests = FALSE,
temporary_tables = FALSE,
placeholder_pattern = "?",
timestamp_cast = function(x) sprintf("CAST('%s' AS TIMESTAMP)", x),
date_cast = function(x) sprintf("CAST('%s' AS DATE)", x),
time_cast = function(x) sprintf("CAST('%s' AS TIME)", x),
blob_cast = function(x) sprintf("%s::BLOB", x)
),
name = "duckdb"
)
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.