Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
cboettig committed Aug 29, 2024
1 parent 8a758f6 commit 95206cc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions R/duckdb_config.R
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,9 @@ load_httpfs <- function(conn = cached_connection()) {
exts <- duckdb_extensions()
httpfs <- exts[exts$extension_name == "httpfs",]
if(!httpfs$installed)
status <- DBI::dbExecute(conn, "INSTALL 'httpfs';")
DBI::dbExecute(conn, "INSTALL 'httpfs';")
if(!httpfs$loaded)
status <- DBI::dbExecute(conn, "LOAD 'httpfs';")
invisible(status)
DBI::dbExecute(conn, "LOAD 'httpfs';")
}

enable_parallel <- function(conn = cached_connection(),
Expand Down

0 comments on commit 95206cc

Please sign in to comment.