From d0679abf45be4041325d586564aa487544a948ea Mon Sep 17 00:00:00 2001 From: FuYouJ <1247908487@qq.com> Date: Thu, 22 Jun 2023 18:45:28 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=B3=A8=E9=87=8A=E6=8E=89?= =?UTF-8?q?=E7=9A=84=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../datax/plugin/writer/neo4jwriter/Neo4jClient.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/neo4jwriter/src/main/java/com/alibaba/datax/plugin/writer/neo4jwriter/Neo4jClient.java b/neo4jwriter/src/main/java/com/alibaba/datax/plugin/writer/neo4jwriter/Neo4jClient.java index 9dcd0eb1..fe08d418 100644 --- a/neo4jwriter/src/main/java/com/alibaba/datax/plugin/writer/neo4jwriter/Neo4jClient.java +++ b/neo4jwriter/src/main/java/com/alibaba/datax/plugin/writer/neo4jwriter/Neo4jClient.java @@ -11,7 +11,6 @@ import com.alibaba.datax.plugin.writer.neo4jwriter.adapter.ValueAdapter; import com.alibaba.datax.plugin.writer.neo4jwriter.config.Neo4jField; import com.alibaba.datax.plugin.writer.neo4jwriter.exception.Neo4jErrorCode; import com.alibaba.fastjson2.JSON; -import com.alibaba.fastjson2.JSONObject; import org.apache.commons.lang3.StringUtils; import org.neo4j.driver.*; import org.neo4j.driver.exceptions.Neo4jException; @@ -226,11 +225,6 @@ public class Neo4jClient { return new MapValue(data); } - //todo 精细化处理数据库异常 - private void processNeo4jException(Neo4jException e) { - //Neo.ClientError.Statement.SyntaxError cypher语句错误 - } - public List getNeo4jFields() { return this.writeConfig.neo4jFields; }