mirror of
https://github.com/fluencelabs/redis
synced 2025-04-04 00:31:03 +00:00
test for the new more strict behavior about number parsing
This commit is contained in:
parent
c9df799b2c
commit
70023978fd
@ -120,7 +120,19 @@ start_server {tags {"basic"}} {
|
|||||||
r incrby novar 17179869184
|
r incrby novar 17179869184
|
||||||
} {34359738368}
|
} {34359738368}
|
||||||
|
|
||||||
test {INCR fails against key with spaces (no integer encoded)} {
|
test {INCR fails against key with spaces (left)} {
|
||||||
|
r set novar " 11"
|
||||||
|
catch {r incr novar} err
|
||||||
|
format $err
|
||||||
|
} {ERR*}
|
||||||
|
|
||||||
|
test {INCR fails against key with spaces (right)} {
|
||||||
|
r set novar "11 "
|
||||||
|
catch {r incr novar} err
|
||||||
|
format $err
|
||||||
|
} {ERR*}
|
||||||
|
|
||||||
|
test {INCR fails against key with spaces (both)} {
|
||||||
r set novar " 11 "
|
r set novar " 11 "
|
||||||
catch {r incr novar} err
|
catch {r incr novar} err
|
||||||
format $err
|
format $err
|
||||||
|
Loading…
x
Reference in New Issue
Block a user