| 1400 | } |
| 1401 | |
| 1402 | uint64_t dictSdsHash(const void *key) { |
| 1403 | return dictGenHashFunction((unsigned char*)key, sdslen((char*)key)); |
| 1404 | } |
| 1405 | |
| 1406 | uint64_t dictSdsCaseHash(const void *key) { |
| 1407 | return dictGenCaseHashFunction((unsigned char*)key, sdslen((char*)key)); |
no test coverage detected