Skip to content

Commit

Permalink
Update duckdb_config.R
Browse files Browse the repository at this point in the history
  • Loading branch information
cboettig authored Dec 5, 2024
1 parent 9b6f478 commit 6a9ea79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/duckdb_config.R
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ duckdb_s3_config <- function(conn = cached_connection(),
}

load_httpfs <- function(conn = cached_connection(),
nightly=getOption("duckdbfs_use_nightly", FALSE)) {
nightly=getOption("duckdbfs_use_nightly", TRUE)) {
exts <- duckdb_extensions()
source <- ""
if (nightly) {
Expand Down Expand Up @@ -135,7 +135,7 @@ enable_parallel <- function(conn = cached_connection(),
#' @references <https://duckdb.org/docs/extensions/spatial.html>
#' @export
load_spatial <- function(conn = cached_connection(),
nightly=getOption("duckdbfs_use_nightly", FALSE)) {
nightly=getOption("duckdbfs_use_nightly", TRUE)) {

if (nightly) {
status <- DBI::dbExecute(conn,
Expand Down

0 comments on commit 6a9ea79

Please sign in to comment.