#1695 Fix case sensitive builtin sql server proc

- Update main.StartSqlServer to use updated ebean-test-docker with collation support
This commit is contained in:
rob bygrave
2019-05-16 15:36:22 +12:00
parent 9da7c9468e
commit b7905daeb5
6 changed files with 20 additions and 14 deletions
+7 -1
View File
@@ -11,9 +11,15 @@ public class StartSqlServer {
config.setDbName("test_ebean");
config.setUser("test_ebean");
// by default this sqlserver docker collation is case sensitive
// using MSSQL_COLLATION=Latin1_General_100_BIN2
//
// when changing to a CI collation also use
// ebean.sqlserver.caseSensitiveCollation=false
// ... such that tests now take that into account
//config.setCollation("Latin1_General_100_CI");
SqlServerContainer container = new SqlServerContainer(config);
container.start();
}
}