This commit is contained in:
谢小军
2020-09-24 17:40:32 +08:00
parent aacd550f5a
commit a70ab3ff83
2 changed files with 12 additions and 6 deletions

View File

@@ -43,18 +43,16 @@ var TypeMysqlDicMp = map[string]string{
"integer": "int64",
}
// TypeMysqlMatchMp Fuzzy Matching Types.模糊匹配类型
// TypeMysqlMatchMp Fuzzy Matching Types.模糊匹配类型
var TypeMysqlMatchMp = map[string]string{
`^(tinyint)[(]\d+[)] unsigned`: "uint8",
`^(smallint)[(]\d+[)] unsigned`: "uint16",
`^(int)[(]\d+[)] unsigned`: "uint32",
`^(bigint)[(]\d+[)] unsigned`: "uint64",
`^(tinyint)[(]\d+[)]$`: "int8",
`^(smallint)[(]\d+[)]$`: "int16",
`^(int)[(]\d+[)]$`: "int",
`^(bigint)[(]\d+[)]$`: "int64",
`^(tinyint)[(]\d+[)]`: "int8",
`^(smallint)[(]\d+[)]`: "int16",
`^(int)[(]\d+[)]`: "int",
`^(bigint)[(]\d+[)]`: "int64",
`^(char)[(]\d+[)]`: "string",
`^(enum)[(](.)+[)]`: "string",
`^(varchar)[(]\d+[)]`: "string",