mirror of
https://github.com/fluencelabs/redis
synced 2025-06-12 08:41:21 +00:00
KEYS now returns a multi bulk reply
This commit is contained in:
@ -178,7 +178,7 @@ proc createComplexDataset {r ops} {
|
||||
}
|
||||
|
||||
proc datasetDigest r {
|
||||
set keys [lsort [split [$r keys *] " "]]
|
||||
set keys [lsort [$r keys *]]
|
||||
set digest {}
|
||||
foreach k $keys {
|
||||
set t [$r type $k]
|
||||
@ -204,7 +204,7 @@ proc datasetDigest r {
|
||||
set aux [::sha1::sha1 -hex [$r zrange $k 0 -1]]
|
||||
}
|
||||
} default {
|
||||
error "Type not supported"
|
||||
error "Type not supported: $t"
|
||||
}
|
||||
}
|
||||
if {$aux eq {}} continue
|
||||
|
Reference in New Issue
Block a user