#1814 - Support older MySQL 5.5

This commit is contained in:
rob bygrave
2019-09-11 21:37:52 +12:00
parent c1487daea8
commit 46eeee68c9
10 changed files with 48 additions and 8 deletions
+1 -1
View File
@@ -183,7 +183,7 @@ public abstract class BaseTestCase {
}
public boolean isMySql() {
return Platform.MYSQL == platform();
return Platform.MYSQL == platform() || Platform.MYSQL55 == platform();
}
public boolean isHana() {
@@ -49,6 +49,7 @@ public class DbMigrationGenerateTest {
migration.addPlatform(Platform.H2, "h2");
migration.addPlatform(Platform.HSQLDB, "hsqldb");
migration.addPlatform(Platform.MYSQL, "mysql");
migration.addPlatform(Platform.MYSQL55, "mysql55");
migration.addPlatform(Platform.POSTGRES, "postgres");
migration.addPlatform(Platform.ORACLE, "oracle");
migration.addPlatform(Platform.SQLITE, "sqlite");