From: antirez Date: Tue, 17 Apr 2012 14:28:50 +0000 (+0200) Subject: Added test for SORT corner case: pattern ending with just "->". X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/a1090c1193c6b3162d166c8c85aca86a39fb6c3e Added test for SORT corner case: pattern ending with just "->". --- diff --git a/tests/unit/sort.tcl b/tests/unit/sort.tcl index ba412254..5a181641 100644 --- a/tests/unit/sort.tcl +++ b/tests/unit/sort.tcl @@ -190,6 +190,13 @@ start_server { r sort myset by score:* } {a aa aaa azz b c d e f g h i l m n o p q r s t u v z} + test "SORT GET with pattern ending with just -> does not get hash field" { + r del mylist + r lpush mylist a + r set x:a-> 100 + r sort mylist by num get x:*-> + } {100} + tags {"slow"} { set num 100 set res [create_random_dataset $num lpush]