exitNA opened a new issue, #8352: URL: https://github.com/apache/seatunnel/issues/8352
### 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 batch模式从doris中同步数据到console中,读取datetime类型数据错误。 doris表结构: ``` CREATE TABLE `test_sync` ( `id` int NULL, `dt` datetime NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ENGINE=OLAP UNIQUE KEY(`id`) DISTRIBUTED BY HASH(`id`) BUCKETS 2 PROPERTIES ( "storage_format" = "V2", "inverted_index_storage_format" = "V1", "enable_unique_key_merge_on_write" = "true" ); ``` 数据如下: | id | dt | |----|---------------------| |1 | 2024-12-03 10:20:32 | seatunnel任务打印结果是: ``` 2024-12-20 19:39:16,193 INFO [.a.s.c.s.c.s.ConsoleSinkWriter] [st-multi-table-sink-writer-1] - subtaskIndex=0 rowIndex=1: SeaTunnelRow#tableId= SeaTunnelRow#kind=INSERT : 1, 1970-01-01T00:28:53.192432 ``` seatunnel将`2024-12-03 10:20:32`读成了`1970-01-01T00:28:53.192432` ### SeaTunnel Version 2.3.8 ### SeaTunnel Config ```conf env { job.name = "doris-mysql" job.mode = "BATCH" } source { Doris { fenodes = "${doris_fe}" username = "***" password = "***" database = "test" table = "test_sync" } } transform { } sink { Console {} } ``` ### Running Command ```shell ./bin/seatunnel.sh -c job/doris-mysql.config -m local ``` ### Error Exception ```log no exception ``` ### Zeta or Flink or Spark Version _No response_ ### Java or Scala Version _No response_ ### Screenshots _No response_ ### Are you willing to submit PR? - [ ] 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]
