Protocol regression from RESP3 work
Former-commit-id: 8c56dbf971aced9e18d170dfffb0c074b545f718
This commit is contained in:
parent
2783649378
commit
a3706352d0
@ -2595,7 +2595,10 @@ void genericZrangebyscoreCommand(client *c, int reverse) {
|
||||
|
||||
/* No "first" element in the specified interval. */
|
||||
if (eptr == NULL) {
|
||||
addReplyNull(c);
|
||||
if (c->resp < 3)
|
||||
addReply(c, shared.emptyarray);
|
||||
else
|
||||
addReplyNull(c);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user