Incorporate workaround so that SQLite extensions work
shntnu opened this issue · 1 comments
shntnu commented
Change
data <- dplyr::copy_to(dplyr::src_sqlite(":memory:", create = T), data)
to
db <- DBI::dbConnect(RSQLite::SQLite(), ":memory:")
RSQLite::initExtension(db)
data <- dplyr::copy_to(db, data)
which is a temporary fix for extension functions not being loaded