diff --git a/DESCRIPTION b/DESCRIPTION index 4fb50f4e..b4aed85a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Package: DatabaseConnector Type: Package Title: Connecting to Various Database Platforms -Version: 6.3.1 -Date: 2023-11-28 +Version: 6.3.2 +Date: 2023-12-04 Authors@R: c( person("Martijn", "Schuemie", email = "schuemie@ohdsi.org", role = c("aut", "cre")), person("Marc", "Suchard", role = c("aut")), diff --git a/NEWS.md b/NEWS.md index dafc8a10..d8eb756b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,11 @@ +DatabaseConnector 6.3.2 +======================= + +Bugfixes: + +1. Fixed bug caused in 6.3.1 when Andromeda is not installed. + + DatabaseConnector 6.3.1 ======================= diff --git a/R/InsertTable.R b/R/InsertTable.R index 20b704b1..9e996695 100644 --- a/R/InsertTable.R +++ b/R/InsertTable.R @@ -218,7 +218,7 @@ insertTable.default <- function(connection, ) tempEmulationSchema <- oracleTempSchema } - if (Andromeda::isAndromedaTable(data)) { + if (is_installed("Andromeda") && Andromeda::isAndromedaTable(data)) { warn("Batch-wise uploading of Andromeda tables currently not supported. Loading entire table in memory.", .frequency = "regularly", .frequency_id = "useMppBulkLoad"