Change HLL* to PF* in error messages
This commit is contained in:
parent
4ab162a559
commit
f0868e080d
@ -458,7 +458,7 @@ void pfaddCommand(redisClient *c) {
|
|||||||
* exactly. */
|
* exactly. */
|
||||||
if (stringObjectLen(o) != REDIS_HLL_SIZE) {
|
if (stringObjectLen(o) != REDIS_HLL_SIZE) {
|
||||||
addReplyErrorFormat(c,
|
addReplyErrorFormat(c,
|
||||||
"HLLADD target key must contain a %d bytes string.",
|
"PFADD target key must contain a %d bytes string.",
|
||||||
REDIS_HLL_SIZE);
|
REDIS_HLL_SIZE);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -502,7 +502,7 @@ void pfcountCommand(redisClient *c) {
|
|||||||
* exactly. */
|
* exactly. */
|
||||||
if (stringObjectLen(o) != REDIS_HLL_SIZE) {
|
if (stringObjectLen(o) != REDIS_HLL_SIZE) {
|
||||||
addReplyErrorFormat(c,
|
addReplyErrorFormat(c,
|
||||||
"HLLCOUNT target key must contain a %d bytes string.",
|
"PFCOUNT target key must contain a %d bytes string.",
|
||||||
REDIS_HLL_SIZE);
|
REDIS_HLL_SIZE);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -562,7 +562,7 @@ void pfmergeCommand(redisClient *c) {
|
|||||||
|
|
||||||
if (stringObjectLen(o) != REDIS_HLL_SIZE) {
|
if (stringObjectLen(o) != REDIS_HLL_SIZE) {
|
||||||
addReplyErrorFormat(c,
|
addReplyErrorFormat(c,
|
||||||
"HLLADD target key must contain a %d bytes string.",
|
"PFADD target key must contain a %d bytes string.",
|
||||||
REDIS_HLL_SIZE);
|
REDIS_HLL_SIZE);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user