felix021 opened a new issue, #59691: URL: https://github.com/apache/doris/issues/59691
### 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 3.0.6 ### What's Wrong? ```sql create table testdb.doris_bug ( id INT, name String ) UNIQUE KEY (id) DISTRIBUTED BY HASH(`id`) BUCKETS 1; insert into testdb.doris_bug values (1, 'Alice'), (2, 'Bob'), (3, 'Camille'); select * from testdb.doris_bug where 1 /* and id = 2 */ -- and id = 3 */ ``` Unexpected result with all rows: <img width="500" height="527" alt="Image" src="https://github.com/user-attachments/assets/52a66673-8d50-4621-9e55-960274545350" /> ### What You Expected? > 3 'Camille' (As is returned by MySQL) ### How to Reproduce? (See above) ### 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]
