Describe the bug

I user XPENDING command get a message id, bug cannot use the id to XREADGROUP

To reproduce

127.0.0.1:6379> XPENDING order pay 0 + 10 consumer-1
1) 1) "1624267936189-0"
   2) "consumer-1"
   3) (integer) 80502
   4) (integer) 22
127.0.0.1:6379> XREADGROUP GROUP pay consumer-1 COUNT 100 BLOCK 0 NOACK STREAMS order 1624267936189-0
1) 1) "order"
   2) (empty array)

Expected behavior

I wish can get the id[1624267936189-0] message detail

Additional information

redis_version:6.0.12

Comment From: huangzhw

You can read the doc https://redis.io/commands/xreadgroup. The ID in XREADGROUP means we want to read record with ID greater than the one provided. If you want to get message of one id, you need use XRANGE key start end