Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:OHDSI/DatabaseConnector into iss…
Browse files Browse the repository at this point in the history
…ue257
  • Loading branch information
ablack3 committed Dec 7, 2023
2 parents e7aacbf + 05bcb3b commit 3b12560
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]", role = c("aut", "cre")),
person("Marc", "Suchard", role = c("aut")),
Expand Down
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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
=======================

Expand Down
2 changes: 1 addition & 1 deletion R/InsertTable.R
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3b12560

Please sign in to comment.