| 2436 | } |
| 2437 | |
| 2438 | char *ldbRedisProtocolToHuman_Double(sds *o, char *reply) { |
| 2439 | char *p = strchr(reply+1,'\r'); |
| 2440 | *o = sdscatlen(*o,"(double) ",9); |
| 2441 | *o = sdscatlen(*o,reply+1,p-reply-1); |
| 2442 | return p+2; |
| 2443 | } |
| 2444 | |
| 2445 | /* Log a Redis reply as debugger output, in a human readable format. |
| 2446 | * If the resulting string is longer than 'len' plus a few more chars |
no test coverage detected