Files
redis/tests/unit
Binbin 39feee8e3a LPOP/RPOP with count against non existing list return null array (#10095)
It used to return `$-1` in RESP2, now we will return `*-1`.
This is a bug in redis 6.2 when COUNT was added, the `COUNT`
option was introduced in #8179. Fix #10089.

the documentation of [LPOP](https://redis.io/commands/lpop) says
```
When called without the count argument:
Bulk string reply: the value of the first element, or nil when key does not exist.

When called with the count argument:
Array reply: list of popped elements, or nil when key does not exist.
```
2022-01-11 14:26:13 +02:00
..
2022-01-02 16:54:47 -08:00
2022-01-06 13:39:38 +02:00
2022-01-05 10:16:04 +02:00
2010-10-15 12:54:53 +02:00
2021-08-09 09:40:29 +03:00