Returns 1 for commands that may have key names in their arguments, but have * no pre-determined key positions. */
| 3945 | /* Returns 1 for commands that may have key names in their arguments, but have |
| 3946 | * no pre-determined key positions. */ |
| 3947 | static int cmdHasMovableKeys(struct redisCommand *cmd) { |
| 3948 | return (cmd->getkeys_proc && !(cmd->flags & CMD_MODULE)) || |
| 3949 | cmd->flags & CMD_MODULE_GETKEYS; |
| 3950 | } |
| 3951 | |
| 3952 | /* If this function gets called we already read a whole |
| 3953 | * command, arguments are in the client argv/argc fields. |
no outgoing calls
no test coverage detected