mirror of
https://github.com/fluencelabs/redis
synced 2025-06-13 01:01:22 +00:00
Enforce maximum string value length of 512MB
This commit is contained in:
@ -410,7 +410,7 @@ start_server {tags {"basic"}} {
|
||||
|
||||
test "SETBIT with out of range bit offset" {
|
||||
r del mykey
|
||||
assert_error "*out of range*" {r setbit mykey [expr 8*1024*1024*1024] 1}
|
||||
assert_error "*out of range*" {r setbit mykey [expr 4*1024*1024*1024] 1}
|
||||
assert_error "*out of range*" {r setbit mykey -1 1}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user