Skip to content

Commit

Permalink
fix(数据集): 修复Impala bigint类型长度不够的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
XiaJunjie2020 authored and xuwei-fit2cloud committed May 10, 2024
1 parent 36c716f commit 4ebfd13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class SQLConstants {

public static final String DEFAULT_DATE_FORMAT = "yyyy-MM-dd HH:mm:ss";

public static final String DEFAULT_INT_FORMAT = "DECIMAL(18,0)";
public static final String DEFAULT_INT_FORMAT = "DECIMAL(19,0)";

public static final String DEFAULT_FLOAT_FORMAT = "DECIMAL(26,8)";

Expand Down

0 comments on commit 4ebfd13

Please sign in to comment.