Set useBulkStmts to false for mariadb

This is a new config which works with mariadb 10.2.7+ but seems
to cause issues for that release with gerrit, lets disable it for now.

Bug: Issue 7074
Change-Id: I7062dc59a60eb5693cd44e7a03b33854dcc6a9d1
This commit is contained in:
Paladox none 2017-08-24 10:49:18 +00:00
parent e6458a2d27
commit b9e37bb21c

View File

@ -40,6 +40,7 @@ class MariaDb extends BaseDataSourceType {
b.append(port(dbs.optional("port")));
b.append("/");
b.append(dbs.required("database"));
b.append("?useBulkStmts=false");
return b.toString();
}