Skip to content

Commit

Permalink
fixing type conversion for hash message fix #161
Browse files Browse the repository at this point in the history
  • Loading branch information
shantstepanian committed May 8, 2020
1 parent c84ff01 commit 8ebf45b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ class SameSchemaChangeAuditDao(private val env: DbEnvironment, private val sqlEx

artf.timeInserted = env.platform.getTimestampValue(resultSet[convertDbObjectName.valueOf(timeInsertedColumn)])
artf.timeUpdated = env.platform.getTimestampValue(resultSet[convertDbObjectName.valueOf(timeUpdatedColumn)])
artf.deployExecution = deployExecutionsById[resultSet[updateDeployExecutionIdColumn] as Long]
artf.deployExecution = deployExecutionsById[env.platform.getLongValue(resultSet[updateDeployExecutionIdColumn])]

// for backward compatibility, make sure the ROLLBACKCONTENT column exists
if (artifactTable.getColumn(rollbackContentColumn) != null) {
Expand Down

0 comments on commit 8ebf45b

Please sign in to comment.