Skip to content

Commit 9710ccb

Browse files
authored
Fix the second launch of Liquibase (#246)
1 parent 82dee03 commit 9710ccb

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

metadata/org.liquibase/liquibase-core/4.17.0/reflect-config.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1135,5 +1135,17 @@
11351135
"parameterTypes": []
11361136
}
11371137
]
1138+
},
1139+
{
1140+
"condition": {
1141+
"typeReachable": "liquibase.snapshot.DatabaseSnapshot"
1142+
},
1143+
"name": "java.util.ArrayList",
1144+
"methods": [
1145+
{
1146+
"name": "<init>",
1147+
"parameterTypes": []
1148+
}
1149+
]
11381150
}
11391151
]

tests/src/org.liquibase/liquibase-core/4.17.0/src/test/java/org_liquibase/liquibase_core/LiquibaseCoreTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ void testYaml() throws Exception {
2828

2929
Liquibase liquibase = new Liquibase("changelog.yaml", new ClassLoaderResourceAccessor(), database);
3030
liquibase.update();
31+
liquibase.update();
3132
});
3233

3334
withConnection(jdbcUrl, (connection) -> {

0 commit comments

Comments
 (0)