The GitHub Actions job "CI" on incubator-kvrocks.git has succeeded.
Run started by GitHub user git-hulk (triggered by git-hulk).

Head commit for run:
46e7eaf428c3e4935cc73f70be3f8c9066d5cb3c / clundro <infda...@outlook.com>
Fix ZRANGE command should return an empty array when count = 0 (#1492)

Currently, ZRANGE will return all matched members if the count = 0 which is not 
consistent
with the Redis behavior. For example:

```shell
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
```

Redis will return an empty array:
```shell
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)
```

But we got all matched members in ZSET:
```shell
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"
```

Report URL: https://github.com/apache/incubator-kvrocks/actions/runs/5274404715

With regards,
GitHub Actions via GitBox

Reply via email to