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

Co-authored-by: fuchanghai <changhai.fu@marketingforce.com>
This commit is contained in:
fuchanghai 2022-09-16 11:41:20 +08:00 committed by GitHub
parent b7f923fe4e
commit 15506a8785
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}