zhangshenghang opened a new issue, #10034: URL: https://github.com/apache/seatunnel/issues/10034
### Search before asking - [x] I had searched in the [issues](https://github.com/apache/seatunnel/issues?q=is%3Aissue+label%3A%22bug%22) and found no similar issues. ### What happened <img width="1295" height="607" alt="Image" src="https://github.com/user-attachments/assets/4fb94ac0-679c-45e4-ac0c-6110d12fcb23" /> ### SeaTunnel Version dev ### SeaTunnel Config ```conf env { parallelism = 1 job.mode = "BATCH" } source { FakeSource { schema = { fields { pk_id = bigint name = string score = int } } rows = [ { kind = INSERT fields = [1, "A", 100] }, { kind = INSERT fields = [2, "B", 100] }, { kind = INSERT fields = [3, "C", 100] }, { kind = INSERT fields = [3, "C", 100] }, { kind = INSERT fields = [3, "C", 100] }, { kind = INSERT fields = [3, "C", 100] }, { kind = UPDATE_BEFORE fields = [1, "A", 100] }, { kind = UPDATE_AFTER fields = [1, "A_1", 100] }, { kind = DELETE fields = [2, "B", 100] } ] } } sink { Clickhouse { host = "clickhouse:8123" database = "default" table = "sink_table" username = "default" password = "" primary_key = "pk_id" } } ``` ### Running Command ```shell e2e ``` ### Error Exception ```log ยท ``` ### Zeta or Flink or Spark Version _No response_ ### Java or Scala Version _No response_ ### Screenshots _No response_ ### Are you willing to submit PR? - [x] Yes I am willing to submit a PR! ### Code of Conduct - [x] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- 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]
