jimmy-boss opened a new issue, #66936: URL: https://github.com/apache/doris/issues/66936
### Search before asking - [x] I had searched in the [issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no similar issues. ### Version v4.1.3 ### What's Wrong? 当使用 TIMESTAMPTZ 作为分区键时,开启动态分区 "dynamic_partition.enable" = "true"时仅在创建时创建分区,后续无调度继续创建分区;使用SHOW DYNAMIC PARTITION TABLES ;时也不显示任何报错信息 ### What You Expected? 后续会创建分区 ### How to Reproduce? 最小复现: ```sql CREATE TABLE IF NOT EXISTS inland_dwd.dwd_fact_game_online_dot ( event_at TIMESTAMPTZ(3) NOT NULL COMMENT '上报时间(分区键)', user_id VARCHAR(256) COMMENT '用户ID' ) ENGINE=OLAP DUPLICATE KEY(event_at) PARTITION BY RANGE (`event_at`)() DISTRIBUTED BY HASH(user_id) BUCKETS 3 PROPERTIES ( "storage_format" = "V3", "compression" = "ZSTD", "compaction_policy" = "time_series", "dynamic_partition.enable" = "true", "dynamic_partition.prefix" = "p_", "dynamic_partition.time_unit" = "DAY", "dynamic_partition.end" = "2", "dynamic_partition.create_history_partition" = "false" ); ``` 第二天时不会继续调度 ### Anything Else? _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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
