From 88afb50a6195ce736fc3602968cf3c34a4c867d0 Mon Sep 17 00:00:00 2001 From: taojinlong Date: Sat, 6 May 2023 12:56:10 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AF=86=E5=88=AB=20mysql=20BIGINT=20UN?= =?UTF-8?q?SIGNED?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/io/dataease/service/dataset/ExtractDataService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/main/java/io/dataease/service/dataset/ExtractDataService.java b/backend/src/main/java/io/dataease/service/dataset/ExtractDataService.java index a97a74f52d..4efc52dd57 100644 --- a/backend/src/main/java/io/dataease/service/dataset/ExtractDataService.java +++ b/backend/src/main/java/io/dataease/service/dataset/ExtractDataService.java @@ -1414,7 +1414,7 @@ public class ExtractDataService { " }catch (Exception e){}\n" + " }"; - private final static String handleMysqlBIGINTUNSIGNED = "if(filed.equalsIgnoreCase(BIGINTUNSIGNEDFIELD)){\n" + + private final static String handleMysqlBIGINTUNSIGNED = "if(filed.equalsIgnoreCase(\"BIGINTUNSIGNEDFIELD\")){\n" + "\t\t\tif(tmp != null && tmp.endsWith(\".0\")){\n" + " \ttry {\n" + " Long.valueOf(tmp.substring(0, tmp.length()-2));\n" +