| 1708 | } |
| 1709 | |
| 1710 | int evalGetKeys(struct redisCommand *cmd, robj **argv, int argc, getKeysResult *result) { |
| 1711 | UNUSED(cmd); |
| 1712 | return genericGetKeys(0, 2, 3, 1, argv, argc, result); |
| 1713 | } |
| 1714 | |
| 1715 | /* Helper function to extract keys from the SORT command. |
| 1716 | * |
nothing calls this directly
no test coverage detected