]> git.saurik.com Git - redis.git/blobdiff - tests/unit/sort.tcl
Fixed SORT bugs (issue #224) with regression tests.
[redis.git] / tests / unit / sort.tcl
index 3a4c855f59fcf8bbca05cd3dcf083d680d0b266d..e474e50cf19557c1730388407a4edf877273a5ef 100644 (file)
@@ -134,6 +134,18 @@ start_server {
         assert_equal [lsort -real $floats] [r sort mylist]
     }
 
+    test "SORT with STORE returns zero if result is empty (github isse 224)" {
+        r flushdb
+        r sort foo store bar
+    } {0}
+
+    test "SORT with STORE does not create empty lists (github issue 224)" {
+        r flushdb
+        r lpush foo bar
+        r sort foo limit 10 10 store zap
+        r exists zap
+    } {0}
+
     tags {"slow"} {
         set num 100
         set res [create_random_dataset $num lpush]