提交 8bca8773 编写于 作者: P Pieter Noordhuis

use the right object when cleaning up after zunion/zinter (fixes issue 216)

上级 14ae26d8
......@@ -5685,7 +5685,7 @@ static void zunionInterGenericCommand(redisClient *c, robj *dstkey, int op) {
addReplyLong(c, dstzset->zsl->length);
server.dirty++;
} else {
decrRefCount(dstzset);
decrRefCount(dstobj);
addReply(c, shared.czero);
}
zfree(src);
......
......@@ -1489,6 +1489,11 @@ proc main {server port} {
list [$r zremrangebyrank zset 1 3] [$r zrange zset 0 -1]
} {3 {a e}}
test {ZUNION against non-existing key doesn't set destination} {
$r del zseta
list [$r zunion dst_key 1 zseta] [$r exists dst_key]
} {0 0}
test {ZUNION basics} {
$r del zseta zsetb zsetc
$r zadd zseta 1 a
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册