This is an automated email from the ASF dual-hosted git repository.

caishunfeng pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 79d3ed0744 Update DataxUtils.java (#13604)
79d3ed0744 is described below

commit 79d3ed0744aae76464b429d1e1d632d27b5457e7
Author: fuchanghai <[email protected]>
AuthorDate: Wed Feb 22 19:01:43 2023 +0800

    Update DataxUtils.java (#13604)
---
 .../java/org/apache/dolphinscheduler/plugin/task/datax/DataxUtils.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dolphinscheduler-task-plugin/dolphinscheduler-task-datax/src/main/java/org/apache/dolphinscheduler/plugin/task/datax/DataxUtils.java
 
b/dolphinscheduler-task-plugin/dolphinscheduler-task-datax/src/main/java/org/apache/dolphinscheduler/plugin/task/datax/DataxUtils.java
index 9ecb0bbb86..16fe49fe9a 100644
--- 
a/dolphinscheduler-task-plugin/dolphinscheduler-task-datax/src/main/java/org/apache/dolphinscheduler/plugin/task/datax/DataxUtils.java
+++ 
b/dolphinscheduler-task-plugin/dolphinscheduler-task-datax/src/main/java/org/apache/dolphinscheduler/plugin/task/datax/DataxUtils.java
@@ -148,7 +148,7 @@ public class DataxUtils {
             case ORACLE:
                 return String.format("\"%s\"", column);
             case SQLSERVER:
-                return String.format("`%s`", column);
+                return String.format("\"%s\"", column);
             case CLICKHOUSE:
                 return String.format("`%s`", column);
             default:

Reply via email to