Merge pull request #5113 from dataease/pr@dev@fixextratdata

fix: 识别 mysql BIGINT UNSIGNED
This commit is contained in:
taojinlong
2023-04-27 17:27:21 +08:00
committed by GitHub

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":