Inspect the native Rducks execution backend
Source:R/connection.R
rducks_native_execution_backend.RdReturns the backend currently recorded in the native database-scoped runtime.
This is a diagnostic cross-check for rducks_current_execution_plan(), whose
value is the R-side default plan for future registrations through this
connection.
Arguments
- con
A
duckdb_connectionalready enabled withrducks_enable().
Examples
# \donttest{
db <- duckdb::dbConnect(duckdb::duckdb(config = list(allow_unsigned_extensions = "true")))
rducks_enable(db)
rducks_native_execution_backend(db)
#> [1] "single"
rducks_release(db)
DBI::dbDisconnect(db)
# }