You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/flamingock-core-commons/src/main/java/io/flamingock/internal/common/core/response/data/ChangeResult.java
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -113,6 +113,10 @@ public boolean isAlreadyApplied() {
Copy file name to clipboardExpand all lines: core/flamingock-core-commons/src/main/java/io/flamingock/internal/common/core/response/data/ChangeStatus.java
+11-5Lines changed: 11 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -20,27 +20,33 @@
20
20
*/
21
21
publicenumChangeStatus {
22
22
/**
23
-
* Change was successfully applied.
23
+
* Change was successfully applied during this run by the operation.
24
24
*/
25
25
APPLIED,
26
26
27
27
/**
28
-
* Change was already applied in a previous execution.
28
+
* Change was found already applied — either by the executor (SKIP action during this run)
29
+
* or by the planner (audit-confirmed without invoking the executor).
29
30
*/
30
31
ALREADY_APPLIED,
31
32
32
33
/**
33
-
* Change failed during execution.
34
+
* Change failed during execution this run.
34
35
*/
35
36
FAILED,
36
37
37
38
/**
38
-
* Change failed but was successfully rolled back.
39
+
* Change failed during execution this run and was successfully rolled back (transactional
40
+
* auto-rollback).
39
41
*/
40
42
ROLLED_BACK,
41
43
42
44
/**
43
-
* Change was not reached due to a prior failure.
45
+
* No positive information about this change in this run. Either the operation didn't process
46
+
* it (executor stopped on a prior failure, the stage was unreached, etc.) or the planner
47
+
* found no audit entry confirming it was applied. Default initial status assigned to every
48
+
* loaded change at {@code PipelineRun} construction; writers transition records forward as
Copy file name to clipboardExpand all lines: core/flamingock-core-commons/src/main/java/io/flamingock/internal/common/core/response/data/ExecuteResponseData.java
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,7 @@ public class ExecuteResponseData {
Copy file name to clipboardExpand all lines: core/flamingock-core-commons/src/main/java/io/flamingock/internal/common/core/response/data/ExecutionReportFormatter.java
+13-9Lines changed: 13 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -73,10 +73,11 @@ public static String summary(ExecuteResponseData result) {
Copy file name to clipboardExpand all lines: core/flamingock-core-commons/src/test/java/io/flamingock/internal/common/core/response/data/ExecutionReportFormatterTest.java
0 commit comments