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

Co-authored-by: fuchanghai <changhai.fu@marketingforce.com>
This commit is contained in:
fuchanghai 2022-09-08 15:09:17 +08:00 committed by GitHub
parent 37325b4c34
commit e101a5cb2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -142,6 +142,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;
}