| 1178 | #ifdef REDIS_TEST |
| 1179 | |
| 1180 | uint64_t hashCallback(const void *key) { |
| 1181 | return dictGenHashFunction((unsigned char*)key, strlen((char*)key)); |
| 1182 | } |
| 1183 | |
| 1184 | int compareCallback(void *privdata, const void *key1, const void *key2) { |
| 1185 | int l1,l2; |
nothing calls this directly
no test coverage detected