| 247 | } |
| 248 | |
| 249 | static uint64_t dictSdsHash(const void *key) { |
| 250 | return dictGenHashFunction((unsigned char*)key, sdslen((char*)key)); |
| 251 | } |
| 252 | |
| 253 | static int dictSdsKeyCompare(void *privdata, const void *key1, |
| 254 | const void *key2) |
nothing calls this directly
no test coverage detected