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
commit b5f2ba430e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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