Skip to content

Commit 6fb40c7

Browse files
committed
update StartDb2
1 parent 202b9ae commit 6fb40c7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

ebean-test/src/main/java/io/ebean/test/config/platform/Db2Setup.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ private Properties dockerProperties(Config dbConfig) {
2424
return new Properties();
2525
}
2626

27-
dbConfig.setDockerVersion("11.5.6.0a");
27+
dbConfig.setDockerVersion("11.5.9.0");
2828
return dbConfig.getDockerProperties();
2929
}
3030

ebean-test/src/test/java/main/StartDb2.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
public class StartDb2 {
66

77
public static void main(String[] args) {
8-
Db2Container.builder("11.5.6.0a")
8+
Db2Container.builder("11.5.9.0")
99
.dbName("unit")
1010
.user("unit")
1111
.password("unit")
1212
// to change collation, charset and other parameters like pagesize:
13-
.configOptions("USING CODESET UTF-8 TERRITORY DE COLLATE USING IDENTITY PAGESIZE 32768")
13+
.createOptions("USING CODESET UTF-8 TERRITORY DE COLLATE USING IDENTITY PAGESIZE 32768")
1414
.configOptions("USING STRING_UNITS CODEUNITS32")
1515
.build()
1616
.startWithDropCreate();

0 commit comments

Comments
 (0)