增加"double unsigned"类型
This commit is contained in:
@@ -29,6 +29,7 @@ var TypeMysqlDicMp = map[string]string{
|
||||
"text": "string",
|
||||
"timestamp": "time.Time",
|
||||
"double": "float64",
|
||||
"double unsigned": "float64",
|
||||
"mediumtext": "string",
|
||||
"longtext": "string",
|
||||
"float": "float32",
|
||||
@@ -45,27 +46,28 @@ var TypeMysqlDicMp = map[string]string{
|
||||
|
||||
// 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",
|
||||
`^(char)[(]\d+[)]`: "string",
|
||||
`^(enum)[(](.)+[)]`: "string",
|
||||
`^(varchar)[(]\d+[)]`: "string",
|
||||
`^(varbinary)[(]\d+[)]`: "[]byte",
|
||||
`^(blob)[(]\d+[)]`: "[]byte",
|
||||
`^(binary)[(]\d+[)]`: "[]byte",
|
||||
`^(decimal)[(]\d+,\d+[)]`: "float64",
|
||||
`^(mediumint)[(]\d+[)]`: "string",
|
||||
`^(double)[(]\d+,\d+[)]`: "float64",
|
||||
`^(float)[(]\d+,\d+[)]`: "float64",
|
||||
`^(float)[(]\d+,\d+[)] unsigned`: "float64",
|
||||
`^(datetime)[(]\d+[)]`: "time.Time",
|
||||
`^(bit)[(]\d+[)]`: "[]uint8",
|
||||
`^(text)[(]\d+[)]`: "string",
|
||||
`^(integer)[(]\d+[)]`: "int",
|
||||
`^(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",
|
||||
`^(char)[(]\d+[)]`: "string",
|
||||
`^(enum)[(](.)+[)]`: "string",
|
||||
`^(varchar)[(]\d+[)]`: "string",
|
||||
`^(varbinary)[(]\d+[)]`: "[]byte",
|
||||
`^(blob)[(]\d+[)]`: "[]byte",
|
||||
`^(binary)[(]\d+[)]`: "[]byte",
|
||||
`^(decimal)[(]\d+,\d+[)]`: "float64",
|
||||
`^(mediumint)[(]\d+[)]`: "string",
|
||||
`^(double)[(]\d+,\d+[)]`: "float64",
|
||||
`^(double)[(]\d+,\d+[)] unsigned`: "float64",
|
||||
`^(float)[(]\d+,\d+[)]`: "float64",
|
||||
`^(float)[(]\d+,\d+[)] unsigned`: "float64",
|
||||
`^(datetime)[(]\d+[)]`: "time.Time",
|
||||
`^(bit)[(]\d+[)]`: "[]uint8",
|
||||
`^(text)[(]\d+[)]`: "string",
|
||||
`^(integer)[(]\d+[)]`: "int",
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user