Nothing
test_that("write_prefix works with cdm_from_con", {
skip_if_not_installed("duckdb")
skip_if_not("duckdb" %in% dbToTest)
con <- local_eunomia_con()
DBI::dbExecute(con, "create schema scratch")
cdm <- cdmFromCon(con, "main", "scratch", writePrefix = "tmp_")
cdm$count <- cdm$person %>%
dplyr::tally() %>%
dplyr::compute(temporary = F, name = "count")
expect_true("tmp_count" %in% listTables(con, schema = "scratch"))
})
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.