Nothing
test_that("fractional seconds can be roundtripped", {
skip_if_not(TEST_RE2)
con <- dbConnect(duckdb())
on.exit(dbDisconnect(con, shutdown = TRUE))
df <- data.frame(a = as.POSIXct(
1.234567 + (1:100) * 1e-6,
origin = structure(0, class = c("POSIXct", "POSIXt")),
tz = "UTC"
))
dbWriteTable(con, "df", df)
df_out <- dbReadTable(con, "df")
expect_equal(df_out, df)
})
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.