torwig opened a new issue, #1483: URL: https://github.com/apache/incubator-kvrocks/issues/1483
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-kvrocks/issues) and found no similar issues. ### Version The latest `unstable`. ### Minimal reproduce step ``` 127.0.0.1:6666> zadd zset11 1 a 2 b 3 c 4 d 5 e 6 f 7 g (integer) 7 127.0.0.1:6666> zrange zset11 0 6 byscore limit 0 0 ``` ### What did you expect to see? Redis: ``` 127.0.0.1:6379> zadd zset11 1 a 2 b 3 c 4 d 5 e 6 f 7 g (integer) 7 127.0.0.1:6379> zrange zset11 0 6 byscore limit 0 0 (empty array) ``` ### What did you see instead? Kvrocks: ``` 127.0.0.1:6666> zrange zset11 0 6 byscore limit 0 0 1) "a" 2) "b" 3) "c" 4) "d" 5) "e" 6) "f" ``` ### Anything Else? _No response_ ### 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]
