|
@@ -39,6 +39,7 @@ public class MySqlTypeConvert implements ITypeConvert {
|
|
|
@Override
|
|
|
public IColumnType processTypeConvert(GlobalConfig config, String fieldType) {
|
|
|
return TypeConverts.use(fieldType)
|
|
|
+ .test(contains("point").then(BYTE_ARRAY))
|
|
|
.test(containsAny("char", "text", "json", "enum").then(STRING))
|
|
|
.test(contains("bigint").then(LONG))
|
|
|
.test(containsAny("tinyint(1)", "bit(1)").then(BOOLEAN))
|