mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#1817 - Rename @DbHstore to @DbMap
This commit is contained in:
@@ -527,7 +527,7 @@ public class InternalConfiguration {
|
||||
}
|
||||
|
||||
private boolean isMySql(Platform platform) {
|
||||
return platform == Platform.MYSQL || platform == Platform.MYSQL55;
|
||||
return platform.base() == Platform.MYSQL;
|
||||
}
|
||||
|
||||
public DataTimeZone getDataTimeZone() {
|
||||
|
||||
@@ -151,7 +151,7 @@ class CQueryBuilder {
|
||||
}
|
||||
|
||||
private boolean isMySql(Platform platform) {
|
||||
return platform == Platform.MYSQL || platform == Platform.MYSQL55;
|
||||
return platform.base() == Platform.MYSQL;
|
||||
}
|
||||
|
||||
private String alias(String rootTableAlias) {
|
||||
|
||||
Reference in New Issue
Block a user