Nothing
test_that("Conversion of sub-dates prior Posix origin is correct", {
con <- dbConnect(duckdb())
on.exit(dbDisconnect(con, shutdown = TRUE))
df <- data.frame(
d = as.Date(c(-1.1, -0.1, 0, 0.1, 1.1), origin = "1970-01-01")
)
duckdb_register(con, "df", df)
res <- sql("from df", con)
expect_identical(
as.character(df$d),
as.character(res$d)
)
})
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.