fix: 识别 mysql BIGINT UNSIGNED

This commit is contained in:
taojinlong 2023-04-27 16:20:46 +08:00
parent 7217679970
commit 150895caba

View File

@ -72,6 +72,7 @@ public class MysqlQueryProvider extends QueryProvider {
case "MEDIUMINT":
case "INTEGER":
case "BIGINT":
case "BIGINT UNSIGNED":
case "LONG": //增加了LONG类型
return 2;// 整型
case "FLOAT":