mirror of
https://github.com/fluencelabs/redis
synced 2025-06-12 08:41:21 +00:00
redis-cli now makes clear when the returned string is an integer
This commit is contained in:
@ -238,6 +238,7 @@ static int cliReadReply(int fd) {
|
||||
cliReadSingleLineReply(fd);
|
||||
return 1;
|
||||
case '+':
|
||||
return cliReadSingleLineReply(fd);
|
||||
case ':':
|
||||
printf("(integer) ");
|
||||
return cliReadSingleLineReply(fd);
|
||||
|
Reference in New Issue
Block a user