diff options
author | antirez <antirez@gmail.com> | 2015-06-29 12:07:18 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2015-06-29 12:07:18 +0200 |
commit | a12192f5ff33298eb7082cc3f6e2de17957e7d26 (patch) | |
tree | 532bd70363b409212def7b35c71f9a5906c8264f /src/redis.c | |
parent | aae0a1f9cce0ced9e6aa2e76977d6db72f6b4edc (diff) | |
download | redis-a12192f5ff33298eb7082cc3f6e2de17957e7d26.tar.gz |
Geo: command function names converted to lowercase, as elsewhere.
In Redis MULTIWORDCOMMANDNAME are mapped to functions where the command
name is all lowercase: multiwordcommandnameCommand().
Diffstat (limited to 'src/redis.c')
-rw-r--r-- | src/redis.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/redis.c b/src/redis.c index 38430b82c..e6707d5f2 100644 --- a/src/redis.c +++ b/src/redis.c @@ -282,12 +282,12 @@ struct redisCommand redisCommandTable[] = { {"bitpos",bitposCommand,-3,"r",0,NULL,1,1,1,0,0}, {"wait",waitCommand,3,"rs",0,NULL,0,0,0,0,0}, {"command",commandCommand,0,"rlt",0,NULL,0,0,0,0,0}, - {"geoadd",geoAddCommand,-5,"wm",0,NULL,1,1,1,0,0}, - {"georadius",geoRadiusCommand,-6,"r",0,NULL,1,1,1,0,0}, - {"georadiusbymember",geoRadiusByMemberCommand,-5,"r",0,NULL,1,1,1,0,0}, - {"geoencode",geoEncodeCommand,-3,"r",0,NULL,0,0,0,0,0}, - {"geodecode",geoDecodeCommand,2,"r",0,NULL,0,0,0,0,0}, - {"geohash",geoHashCommand,-2,"r",0,NULL,0,0,0,0,0}, + {"geoadd",geoaddCommand,-5,"wm",0,NULL,1,1,1,0,0}, + {"georadius",georadiusCommand,-6,"r",0,NULL,1,1,1,0,0}, + {"georadiusbymember",georadiusByMemberCommand,-5,"r",0,NULL,1,1,1,0,0}, + {"geoencode",geoencodeCommand,-3,"r",0,NULL,0,0,0,0,0}, + {"geodecode",geodecodeCommand,2,"r",0,NULL,0,0,0,0,0}, + {"geohash",geohashCommand,-2,"r",0,NULL,0,0,0,0,0}, {"geopos",geoposCommand,-2,"r",0,NULL,0,0,0,0,0}, {"pfselftest",pfselftestCommand,1,"r",0,NULL,0,0,0,0,0}, {"pfadd",pfaddCommand,-2,"wmF",0,NULL,1,1,1,0,0}, |