mrfengtiger commented on issue #17285:
URL: https://github.com/apache/doris/issues/17285#issuecomment-1471160289

   目前临时解决方案:
   拉取drois 1.2.2-rc01代码, 将 
org.apache.doris.load.sync.canal.CanalSyncChannel类beginTxn方法代码修改如下
   ```java
   String targetColumn = Joiner.on(",").join(columns) + "," + DELETE_COLUMN;
   // 修改成
   String targetColumn = "`" + Joiner.on("`,`").join(columns) + "`," + 
DELETE_COLUMN;
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to