Skip to content

Commit 4a3af3a

Browse files
authored
Merge pull request #49 from OHDSI/develop
Release 0.5.4
2 parents ebfaf9c + 5b10f19 commit 4a3af3a

38 files changed

+307
-251
lines changed

DESCRIPTION

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: ResultModelManager
22
Title: Result Model Manager (RMM) for OHDSI packages
3-
Version: 0.5.4
3+
Version: 0.5.5
44
Authors@R:
55
person("Jamie", "Gilbert", , "[email protected]", role = c("aut", "cre"))
66
Description: Database data model management utilities for OHDSI packages.
@@ -39,5 +39,6 @@ Suggests:
3939
devtools,
4040
pkgdown,
4141
remotes,
42-
styler
42+
styler,
43+
Andromeda
4344
Config/testthat/edition: 3

NEWS.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
# ResultModelManager 0.5.3
1+
# ResultModelManager 0.5.5
2+
3+
Bug Fixes:
4+
1. Removal of comment in DataMigrationManager sql that caused translation error for spark/databricks platforms
5+
6+
2. The "optional" column in the model specification is now fully optional (when not present, all columns are assumed to
7+
be required)
8+
9+
10+
# ResultModelManager 0.5.4
211

312
Changes:
413

R/DataMigrationManager.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ DataMigrationManager <- R6::R6Class(
308308
sql <- "
309309
--HINT DISTRIBUTE ON RANDOM
310310
CREATE TABLE @database_schema.@table_prefix@migration (
311-
migration_file VARCHAR PRIMARY KEY, --string value represents file name
311+
migration_file VARCHAR PRIMARY KEY,
312312
migration_order INT NOT NULL unique
313313
);"
314314

0 commit comments

Comments
 (0)