summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/tests/integration/convert-zipmap-hash-on-load.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/tests/integration/convert-zipmap-hash-on-load.tcl')
-rw-r--r--examples/redis-unstable/tests/integration/convert-zipmap-hash-on-load.tcl39
1 files changed, 0 insertions, 39 deletions
diff --git a/examples/redis-unstable/tests/integration/convert-zipmap-hash-on-load.tcl b/examples/redis-unstable/tests/integration/convert-zipmap-hash-on-load.tcl
deleted file mode 100644
index f7eda0e..0000000
--- a/examples/redis-unstable/tests/integration/convert-zipmap-hash-on-load.tcl
+++ /dev/null
@@ -1,39 +0,0 @@
-tags {"external:skip"} {
-
-# Copy RDB with zipmap encoded hash to server path
-set server_path [tmpdir "server.convert-zipmap-hash-on-load"]
-
-exec cp -f tests/assets/hash-zipmap.rdb $server_path
-start_server [list overrides [list "dir" $server_path "dbfilename" "hash-zipmap.rdb"]] {
- test "RDB load zipmap hash: converts to listpack" {
- r select 0
-
- assert_match "*listpack*" [r debug object hash]
- assert_equal 2 [r hlen hash]
- assert_match {v1 v2} [r hmget hash f1 f2]
- }
-}
-
-exec cp -f tests/assets/hash-zipmap.rdb $server_path
-start_server [list overrides [list "dir" $server_path "dbfilename" "hash-zipmap.rdb" "hash-max-ziplist-entries" 1]] {
- test "RDB load zipmap hash: converts to hash table when hash-max-ziplist-entries is exceeded" {
- r select 0
-
- assert_match "*hashtable*" [r debug object hash]
- assert_equal 2 [r hlen hash]
- assert_match {v1 v2} [r hmget hash f1 f2]
- }
-}
-
-exec cp -f tests/assets/hash-zipmap.rdb $server_path
-start_server [list overrides [list "dir" $server_path "dbfilename" "hash-zipmap.rdb" "hash-max-ziplist-value" 1]] {
- test "RDB load zipmap hash: converts to hash table when hash-max-ziplist-value is exceeded" {
- r select 0
-
- assert_match "*hashtable*" [r debug object hash]
- assert_equal 2 [r hlen hash]
- assert_match {v1 v2} [r hmget hash f1 f2]
- }
-}
-
-}