From 340739ce80e705a63d6d2a257ce43422cde13113 Mon Sep 17 00:00:00 2001 From: taojinlong Date: Wed, 5 Feb 2025 16:08:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DMysql=20JDBC=20?= =?UTF-8?q?=E8=BF=9E=E6=8E=A5=E5=8F=82=E6=95=B0=E6=9C=AA=E9=AA=8C=E8=AF=81?= =?UTF-8?q?=E5=AF=BC=E8=87=B4=E4=BB=BB=E6=84=8F=E6=96=87=E4=BB=B6=E8=AF=BB?= =?UTF-8?q?=E5=8F=96=E6=BC=8F=E6=B4=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/io/dataease/dto/datasource/MysqlConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/backend/src/main/java/io/dataease/dto/datasource/MysqlConfiguration.java b/core/backend/src/main/java/io/dataease/dto/datasource/MysqlConfiguration.java index 3b875f2dc8..24aa64c81d 100644 --- a/core/backend/src/main/java/io/dataease/dto/datasource/MysqlConfiguration.java +++ b/core/backend/src/main/java/io/dataease/dto/datasource/MysqlConfiguration.java @@ -36,7 +36,7 @@ public class MysqlConfiguration extends JdbcConfiguration { public List getIllegalParameters() { List newIllegalParameters = new ArrayList<>(); newIllegalParameters.addAll(illegalParameters); - newIllegalParameters.addAll(Arrays.asList("allowloadlocalinfile", "allowUrlInLocalInfile", "allowLoadLocalInfileInPath")); + newIllegalParameters.addAll(Arrays.asList("maxAllowedPacket", "allowloadlocalinfile", "allowUrlInLocalInfile", "allowLoadLocalInfileInPath")); return newIllegalParameters; }