未验证 提交 15506a87 编写于 作者: F fuchanghai 提交者: GitHub

[fix-#11815] fix ck column names contain special characters (#11973)

Co-authored-by: Nfuchanghai <changhai.fu@marketingforce.com>
上级 b7f923fe
......@@ -131,6 +131,8 @@ public class DataxUtils {
return String.format("\"%s\"", column);
case SQLSERVER:
return String.format("`%s`", column);
case CLICKHOUSE:
return String.format("`%s`", column);
default:
return column;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册