Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
cboettig committed Apr 8, 2024
1 parent 51efdcb commit c46fee1
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 @@ -123,12 +123,12 @@ enable_parallel <- function(conn = cached_connection(),
#'
#' @inheritParams duckdb_s3_config
#' @param nightly should we use the nightly version or not?
#' default TRUE, configurable as `duckdbfs_use_nightly` option.
#' default FALSE, configurable as `duckdbfs_use_nightly` option.
#' @return loads the extension and returns status invisibly.
#' @references <https://duckdb.org/docs/extensions/spatial.html>
#' @export
load_spatial <- function(conn = cached_connection(),
nightly=getOption("duckdbfs_use_nightly", TRUE)) {
nightly=getOption("duckdbfs_use_nightly", FALSE)) {

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

0 comments on commit c46fee1

Please sign in to comment.