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

fix: ck 类型识别错误
This commit is contained in:
taojinlong 2023-12-18 22:23:06 -06:00 committed by GitHub
commit c94a89faae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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