Skip to content

Commit

Permalink
Merge pull request #7949 from dataease/pr@dev-v2@fix_doris_bug
Browse files Browse the repository at this point in the history
fix: 降低数值取值精度来规避doris自身bug
  • Loading branch information
XiaJunjie2020 committed Jan 31, 2024
2 parents 8b1c3f1 + e150ef3 commit 7f1e155
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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,'')";

Expand Down

0 comments on commit 7f1e155

Please sign in to comment.