Skip to content

Commit

Permalink
Remove unused start and end times
Browse files Browse the repository at this point in the history
  • Loading branch information
jshoughtaling committed Oct 21, 2023
1 parent b3b65dc commit 4aa1dde
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions R/writeDBResultsTo.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ writeDBResultsToJson <- function(connection,
writeTableName,
outputFolder,
outputFile) {
startTime <- Sys.time()

metadata <- DatabaseConnector::renderTranslateQuerySql(
connection,
sql = "select * from @cdmDatabaseSchema.cdm_source;",
Expand Down Expand Up @@ -63,10 +61,6 @@ writeDBResultsToJson <- function(connection,
checkResults = checkResults
)

endTime <- Sys.time()

delta <- startTime - endTime

# Quick patch for non-camel-case column name
names(checkResults)[names(checkResults) == "checkid"] <- "checkId"

Expand Down

0 comments on commit 4aa1dde

Please sign in to comment.