Skip to content

Instantly share code, notes, and snippets.

View chris-holcomb's full-sized avatar

Chris Holcomb chris-holcomb

View GitHub Profile
library("duckdb")
#### Creating the Ducklake
con <- dbConnect(duckdb(), dbdir=":memory:")
dbExecute(con, "INSTALL ducklake;")
dbExecute(con, "ATTACH 'ducklake:metadata.ducklake' AS r_ducklake;")
dbExecute(con, "USE r_ducklake;")
#dbDisconnect(con)