Merge pull request #7495 from dataease/pr@dev@fixSql

fix: ck 字段类型识别错误
This commit is contained in:
taojinlong 2024-01-02 16:08:27 +08:00 committed by GitHub
commit 64ab95a9cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,6 +96,7 @@ public class CKQueryProvider extends QueryProvider {
return 3;// 浮点
case "BIT":
case "TINYINT":
case "BOOL":
return 4;// 布尔
default:
return 0;