4636 - Fixed Oracle syntax problem with fix provided via PR 4630. (#4637)
* 4636 - Fixed Oracle syntax problem with fix provided via PR 4630. * 4636 - Added a changelog file for this fix.
This commit is contained in:
parent
b450729ff9
commit
5eca889296
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
type: fix
|
||||
issue: 4636
|
||||
title: "Fixed Oracle syntax problem with the fix that was previously provided via Pull Request 4630."
|
|
@ -178,11 +178,11 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks<VersionEnum> {
|
|||
version.executeRawSql("20230397.1",
|
||||
"update BT2_JOB_INSTANCE " +
|
||||
"set UPDATE_TIME = coalesce(end_time, start_time, create_time, TIMESTAMP '2023-01-01 00:00:00') " +
|
||||
"where UPDATE_TIME is null;");
|
||||
"where UPDATE_TIME is null");
|
||||
version.executeRawSql("20230397.2",
|
||||
"update bt2_work_chunk " +
|
||||
"set UPDATE_TIME = coalesce(end_time, start_time, create_time, TIMESTAMP '2023-01-01 00:00:00') " +
|
||||
"where UPDATE_TIME is null;");
|
||||
"where UPDATE_TIME is null");
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue