qzsee opened a new issue #7953: URL: https://github.com/apache/incubator-doris/issues/7953
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and found no similar issues. ### Version master ### What's Wrong? ```sql create table A ( k1 int, k2 int, v1 int sum ) DISTRIBUTED BY HASH(k1) BUCKETS 3; insert into A values(1,3,7); insert into A values(2,2,8); insert into A values(3,1,9); create table B ( k1 int, k2 int, k3 int ) DISTRIBUTED BY HASH(k1) BUCKETS 3; insert into B values(1,3,1); insert into B values(3,1,1); insert into B values(4,1,1); insert into B values(5,2,1); select t1.* from A t1 join B t2 using(k1,k2) where t1.k1 between 1 and 3 and t2.k3 between 1+0 and 3+0; ERROR 1064 (HY000): errCode = 2, detailMessage = Unexpected exception: null ### What You Expected? no error ### How to Reproduce? _No response_ ### Anything Else? _No response_ ### Are you willing to submit PR? - [X] 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]
