]> git.saurik.com Git - redis.git/blobdiff - src/sort.c
Fixed INFO implementation to use the new allocator name define
[redis.git] / src / sort.c
index 1a3fecb6f742483fc262ed1edd81a488676aa524..ff275c958a22684ff7fbb1f92c1ce62ad3ca88f0 100644 (file)
@@ -200,7 +200,7 @@ void sortCommand(redisClient *c) {
     }
 
     /* Destructively convert encoded sorted sets for SORT. */
-    if (sortval->type == REDIS_ZSET) zsetConvert(sortval, REDIS_ENCODING_RAW);
+    if (sortval->type == REDIS_ZSET) zsetConvert(sortval, REDIS_ENCODING_SKIPLIST);
 
     /* Load the sorting vector with all the objects to sort */
     switch(sortval->type) {