Mryange opened a new pull request, #39809: URL: https://github.com/apache/doris/pull/39809
…edicate will be miss. (#39550) https://github.com/apache/doris/pull/39550 ``` 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'); mysql [test10]>select dt from datetest WHERE dt = 1 ; +------------+ | dt | +------------+ | 2024-01-01 | +------------+ ``` now ``` mysql [test10]>select dt from datetest WHERE dt = 1 ; Empty set (0.16 sec) ``` <!--Describe your changes.--> ## Proposed changes Issue Number: close #xxx <!--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: [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]
