timbytimmy opened a new issue, #16436: URL: https://github.com/apache/iotdb/issues/16436
### Search before asking - [x] I searched in the [issues](https://github.com/apache/iotdb/issues) and found nothing similar. ### Version 2.0.5 (build: 0917050) ### Describe the bug and provide the minimal reproduce step CREATE DATABASE root.min; CREATE ALIGNED TIMESERIES root.min.d1 (c0 INT64); INSERT INTO root.min.d1(time, c0) VALUES (1641024094598, -42837); --query 1 SELECT c0 FROM root.min.d1 WHERE (c0 = -42837) AND (time BETWEEN 1641024094598 AND 1641024955352); --query 2 SELECT c0 FROM root.min.d1 WHERE (c0 = -42837) AND (time BETWEEN (1641024094598) AND (1641024955352)); --query 3 SELECT c0 FROM root.min.d1 WHERE (c0 = -42837) AND (time BETWEEN (1641024094598+0) AND (1641024955352+0)); ### What did you expect to see? query 1 : return 1 result query2 : return 1 result query3 : return 1 result ### What did you see instead? query 1 : return 1 result query2 : return 1 result query3 : 305 INTERNAL_SERVER_ERROR <img width="1777" height="671" alt="Image" src="https://github.com/user-attachments/assets/2e5d9b12-2abe-4848-9d5e-97f774176c7b" /> ### Anything else? 305 INTERNAL_SERVER_ERROR when +0 is present on both BETWEEN endpoints. (only 1 side is work just fine). ### Are you willing to submit a PR? - [ ] I'm willing to submit a PR! -- 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]
