Merge pull request #7949 from dataease/pr@dev-v2@fix_doris_bug

fix: 降低数值取值精度来规避doris自身bug
This commit is contained in:
Junjun 2024-01-31 17:44:01 +08:00 committed by GitHub
commit 7f1e1554e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -73,7 +73,7 @@ public class SQLConstants {
public static final String DEFAULT_INT_FORMAT = "DECIMAL(18,0)";
public static final String DEFAULT_FLOAT_FORMAT = "DECIMAL(27,8)";
public static final String DEFAULT_FLOAT_FORMAT = "DECIMAL(26,8)";
public static final String WHERE_VALUE_NULL = "(NULL,'')";