| 1553 | #ifdef REDIS_TEST |
| 1554 | |
| 1555 | uint64_t hashCallback(const void *key) { |
| 1556 | return dictGenHashFunction((unsigned char*)key, strlen((char*)key)); |
| 1557 | } |
| 1558 | |
| 1559 | int compareCallback(void *privdata, const void *key1, const void *key2) { |
| 1560 | int l1,l2; |
nothing calls this directly
no test coverage detected