Now MULTI returns +OK as well

This commit is contained in:
antirez 2009-12-27 15:58:03 -05:00
parent 6e4698826f
commit 36c548f01d

View File

@ -5365,6 +5365,7 @@ static void queueMultiCommand(redisClient *c, struct redisCommand *cmd) {
static void multiCommand(redisClient *c) {
c->flags |= REDIS_MULTI;
addReply(c,shared.ok);
}
static void execCommand(redisClient *c) {