Skip to content

Commit 2d48dd2

Browse files
authored
Pass create/configOptions to DB2 test container (#3550)
This allows to pass collation/pagesize settings via the `ebean.test.createOptions=` property to the container
1 parent 60aa899 commit 2d48dd2

File tree

1 file changed

+1
-1
lines changed
  • ebean-test/src/main/java/io/ebean/test/config/platform

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Config {
1919
/**
2020
* Common optional docker parameters that we just transfer to docker properties.
2121
*/
22-
private static final String[] DOCKER_TEST_PARAMS = {"fastStartMode", "inMemory", "initSqlFile", "seedSqlFile", "adminUser", "adminPassword", "extraDb", "extraDb.dbName", "extraDb.username", "extraDb.password", "extraDb.extensions", "extraDb.initSqlFile", "extraDb.seedSqlFile"};
22+
private static final String[] DOCKER_TEST_PARAMS = {"fastStartMode", "inMemory", "initSqlFile", "seedSqlFile", "adminUser", "adminPassword", "extraDb", "extraDb.dbName", "extraDb.username", "extraDb.password", "extraDb.extensions", "extraDb.initSqlFile", "extraDb.seedSqlFile", "createOptions", "configOptions"};
2323
private static final String[] DOCKER_PLATFORM_PARAMS = {"containerName", "image", "internalPort", "startMode", "shutdownMode", "maxReadyAttempts", "tmpfs", "collation", "characterSet"};
2424

2525
private static final String DDL_MODE_OPTIONS = "dropCreate, create, none, migration, createOnly or migrationDropCreate";

0 commit comments

Comments
 (0)