| 2257 | } |
| 2258 | |
| 2259 | int evalGetKeys(struct redisCommand *cmd, robj **argv, int argc, getKeysResult *result) { |
| 2260 | UNUSED(cmd); |
| 2261 | return genericGetKeys(0, 2, 3, 1, argv, argc, result); |
| 2262 | } |
| 2263 | |
| 2264 | /* Helper function to extract keys from the SORT command. |
| 2265 | * |
nothing calls this directly
no test coverage detected