Mryange opened a new pull request, #39550: URL: https://github.com/apache/doris/pull/39550
## Proposed changes ``` drop table datetest; create table datetest ( id int, dt date ) DUPLICATE key (id) distributed by hash(id) buckets 1 properties( "replication_num" = "1" ); insert into datetest values (1, '2024-01-01'); ``` now ``` mysql [test10]>select dt from datetest WHERE dt = 1 ; Empty set (0.16 sec) ``` <!--Describe your changes.--> -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org