Returns 1 for commands that may have key names in their arguments, but have * no pre-determined key positions. */
| 4774 | /* Returns 1 for commands that may have key names in their arguments, but have |
| 4775 | * no pre-determined key positions. */ |
| 4776 | static int cmdHasMovableKeys(struct redisCommand *cmd) { |
| 4777 | return (cmd->getkeys_proc && !(cmd->flags & CMD_MODULE)) || |
| 4778 | cmd->flags & CMD_MODULE_GETKEYS; |
| 4779 | } |
| 4780 | |
| 4781 | /* If this function gets called we already read a whole |
| 4782 | * command, arguments are in the client argv/argc fields. |
no outgoing calls
no test coverage detected