| 1306 | } |
| 1307 | |
| 1308 | uint64_t dictSdsHash(const void *key) { |
| 1309 | return dictGenHashFunction((unsigned char*)key, sdslen((char*)key)); |
| 1310 | } |
| 1311 | |
| 1312 | uint64_t dictSdsCaseHash(const void *key) { |
| 1313 | return dictGenCaseHashFunction((unsigned char*)key, sdslen((char*)key)); |
nothing calls this directly
no test coverage detected