From 0dd32987a8f48add66a522d866c2ac81b40f7b93 Mon Sep 17 00:00:00 2001 From: Carl Boettiger Date: Thu, 22 Aug 2024 05:07:23 +0000 Subject: [PATCH] bugfix --- R/parse_uri.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/parse_uri.R b/R/parse_uri.R index d8e56f4..cef6d82 100644 --- a/R/parse_uri.R +++ b/R/parse_uri.R @@ -1,6 +1,6 @@ parse_uri <- function(sources, conn, recursive = TRUE) { - if(any(grepl("^\\w+://"), sources)) { + if(any(grepl("^\\w+://", sources))) { # local file paths that don't require network should not attempt to load it # Maybe unnecessary as httpfs should be bundled with R's binary duckdb load_httpfs(conn)