fix: ck 类型识别错误

This commit is contained in:
taojinlong 2023-12-19 12:19:00 +08:00
parent fefec9337e
commit aa083b35e7

View File

@ -62,6 +62,9 @@ public class CKQueryProvider extends QueryProvider {
if (field.indexOf("DATETIME64") > -1) {
field = "DATETIME64";
}
if (field.indexOf("DECIMAL") > -1) {
field = "DECIMAL";
}
switch (field) {
case "STRING":
case "VARCHAR":