Skip to content

Commit

Permalink
Merge pull request #71 from OHDSI/develop
Browse files Browse the repository at this point in the history
Release 0.5.11
  • Loading branch information
azimov authored Sep 23, 2024
2 parents c734b7e + 09bd4e4 commit dee78e2
Show file tree
Hide file tree
Showing 39 changed files with 79 additions and 73 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/R_CMD_check_Hades.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:

- name: Upload source package
if: success() && runner.os == 'macOS' && github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: package_tarball
path: check/*.tar.gz
Expand Down
6 changes: 3 additions & 3 deletions CRAN-SUBMISSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Version: 0.5.10
Date: 2024-08-21 04:10:48 UTC
SHA: bb001b6745dfbc303db44ef96b9eb8aaa2f67901
Version: 0.5.11
Date: 2024-09-18 17:05:03 UTC
SHA: cf95c8b339e484e2c0e3889d6537100516e9600c
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: ResultModelManager
Title: Result Model Manager
Version: 0.5.10
Version: 0.5.11
Authors@R:
person("Jamie", "Gilbert", , "[email protected]", role = c("aut", "cre"))
Description: Database data model management utilities for R packages in the Observational Health Data Sciences and
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# ResultModelManager 0.5.11

Changes:

1. Refactor of tests to accommodate cran

# ResultModelManager 0.5.10

Changes:
Expand Down
2 changes: 1 addition & 1 deletion R/DataModel.R
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ uploadTable <- function(tableName,
table_name = env$tableName
)
primaryKeyValuesInDb <-
DatabaseConnector::querySql(connection, sql)
DatabaseConnector::querySql(connection, sql, integer64AsNumeric = TRUE)
colnames(primaryKeyValuesInDb) <-
tolower(colnames(primaryKeyValuesInDb))
env$primaryKeyValuesInDb <- primaryKeyValuesInDb
Expand Down
5 changes: 4 additions & 1 deletion R/QueryNamespace.R
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,10 @@ QueryNamespace <- R6::R6Class(
#' @description
#' Close connections etc
finalize = function() {
private$connectionHandler$finalize()
if (!is.null(private$connectionHandler)) {
private$connectionHandler$finalize()
private$connectionHandler <- NULL
}
invisible(NULL)
}
)
Expand Down
2 changes: 1 addition & 1 deletion docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/LICENSE-text.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/articles/CreatingMigrations.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/articles/ExampleProject.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/articles/PackageDesign.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/articles/UploadFunctionality.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/articles/UsingAnExportManager.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/articles/UsingConnectionHandlers.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/articles/UsingQueryNamespaces.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ articles:
UsingAnExportManager: UsingAnExportManager.html
UsingConnectionHandlers: UsingConnectionHandlers.html
UsingQueryNamespaces: UsingQueryNamespaces.html
last_built: 2024-08-13T18:18Z
last_built: 2024-09-18T16:35Z
2 changes: 1 addition & 1 deletion docs/reference/ConnectionHandler.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/DataMigrationManager.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/PooledConnectionHandler.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/reference/QueryNamespace.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/ResultExportManager.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/ResultModelManager-package.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/createQueryNamespace.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/createResultExportManager.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit dee78e2

Please sign in to comment.