Skip to content

Commit

Permalink
add exception of pathtoDriver check for duckdb
Browse files Browse the repository at this point in the history
  • Loading branch information
egillax committed Oct 15, 2023
1 parent 20c66bd commit 70ce98f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/Drivers.R
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ getJbcDriverSingleton <- function(driverClass = "", classPath = "") {
}

checkPathToDriver <- function(pathToDriver, dbms) {
if (!is.null(dbms) && dbms %in% c("sqlite", "sqlite extended")) {
if (!is.null(dbms) && dbms %in% c("sqlite", "sqlite extended", "duckdb")) {
return()
}
if (pathToDriver == "") {
Expand Down

0 comments on commit 70ce98f

Please sign in to comment.