10000 Allow sInterStore to take one arg (as it could be one array) · jrtkcoder/phpredis@f24fc9f · GitHub
[go: up one dir, main page]

Skip to content

Commit f24fc9f

Browse files
Allow sInterStore to take one arg (as it could be one array)
Addresses phpredis#748
1 parent beba562 commit f24fc9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis_commands.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2769,7 +2769,7 @@ int redis_sinterstore_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
27692769
char **cmd, int *cmd_len, short *slot, void **ctx)
27702770
{
27712771
return gen_varkey_cmd(INTERNAL_FUNCTION_PARAM_PASSTHRU, redis_sock,
2772-
"SINTERSTORE", sizeof("SINTERSTORE")-1, 2, 0, cmd, cmd_len, slot);
2772+
"SINTERSTORE", sizeof("SINTERSTORE")-1, 1, 0, cmd, cmd_len, slot);
27732773
}
27742774

27752775
/* SUNION */

0 commit comments

Comments
 (0)
0