]> git.saurik.com Git - redis.git/blobdiff - tests/unit/type/zset.tcl
Merge pull request #544 from dvirsky/2.6
[redis.git] / tests / unit / type / zset.tcl
index bab98854db8d5af8c3b593574de8fba9db0efb29..806f4c88be8e1294554dc63b8873b55e28d129cc 100644 (file)
@@ -524,6 +524,14 @@ start_server {tags {"zset"}} {
         r zrange out 0 -1 withscores
     } {neginf 0}
 
+    test {ZINTERSTORE #516 regression, mixed sets and ziplist zsets} {
+        r sadd one 100 101 102 103
+        r sadd two 100 200 201 202
+        r zadd three 1 500 1 501 1 502 1 503 1 100
+        r zinterstore to_here 3 one two three WEIGHTS 0 0 1
+        r zrange to_here 0 -1
+    } {100}
+
     proc stressers {encoding} {
         if {$encoding == "ziplist"} {
             # Little extra to allow proper fuzzing in the sorting stresser