summaryrefslogtreecommitdiff
path: root/src/commands.c
diff options
context:
space:
mode:
authorWen Hui <wen.hui.ware@gmail.com>2022-10-25 07:26:08 -0400
committerGitHub <noreply@github.com>2022-10-25 14:26:08 +0300
commit7c3916ae6e5bc31a6991986dd52a5ae9b4147fae (patch)
tree734ced8697a1b7107869836443d157a41965c6b7 /src/commands.c
parentf8970fdbfa138f8576340ff0af73c3d2603c7e8e (diff)
downloadredis-7c3916ae6e5bc31a6991986dd52a5ae9b4147fae.tar.gz
Fix command GEOHASH and GEOPOS argument doc, mark member as optional (#11417)
These commands take a list of members, which can be empty (i.e. running the command with just a key name). this always results in an empty array reply, so it doesn't make much sense, but changing it is a breaking change. This PR fixes the documentation, making the member field as optional, just makes sure the command format documentation is consistent with the command behavior. The command format will be: 127.0.0.1:6381> GEOPOS key [member [member ...]] 127.0.0.1:6381> GEOHASH key [member [member ...]]
Diffstat (limited to 'src/commands.c')
-rw-r--r--src/commands.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands.c b/src/commands.c
index b9b4b915d..c432d0a12 100644
--- a/src/commands.c
+++ b/src/commands.c
@@ -1872,7 +1872,7 @@ struct redisCommandArg GEODIST_Args[] = {
/* GEOHASH argument table */
struct redisCommandArg GEOHASH_Args[] = {
{"key",ARG_TYPE_KEY,0,NULL,NULL,NULL,CMD_ARG_NONE},
-{"member",ARG_TYPE_STRING,-1,NULL,NULL,NULL,CMD_ARG_MULTIPLE},
+{"member",ARG_TYPE_STRING,-1,NULL,NULL,NULL,CMD_ARG_OPTIONAL|CMD_ARG_MULTIPLE},
{0}
};
@@ -1887,7 +1887,7 @@ struct redisCommandArg GEOHASH_Args[] = {
/* GEOPOS argument table */
struct redisCommandArg GEOPOS_Args[] = {
{"key",ARG_TYPE_KEY,0,NULL,NULL,NULL,CMD_ARG_NONE},
-{"member",ARG_TYPE_STRING,-1,NULL,NULL,NULL,CMD_ARG_MULTIPLE},
+{"member",ARG_TYPE_STRING,-1,NULL,NULL,NULL,CMD_ARG_OPTIONAL|CMD_ARG_MULTIPLE},
{0}
};