The GitHub Actions job "CI" on kvrocks.git has failed.
Run started by GitHub user enjoy-binbin (triggered by caipengbo).

Head commit for run:
dc5140dd0c7ffdbb028fad238154622a60853b23 / Binbin <binloveplay1...@qq.com>
Fix DECRBY LLONG_MIN caused an overflow

Note that this may break compatibility since in the past
doing: `DECRBY key -9223372036854775808` would succeed
but create an invalid result. And now we will return an
error rejecting the request.

Before:
```
127.0.0.1:6666> set key 0
OK
127.0.0.1:6666> decrby key -9223372036854775807
(integer) 9223372036854775807
127.0.0.1:6666> get key
"9223372036854775807"

127.0.0.1:6666> set key 0
OK
127.0.0.1:6666> decrby key -9223372036854775808
(integer) -9223372036854775808
127.0.0.1:6666> get key
"-9223372036854775808"
```

After:
```
127.0.0.1:6666> decrby key -9223372036854775808
(error) ERR decrement would overflow
```

Report URL: https://github.com/apache/kvrocks/actions/runs/5527467143

With regards,
GitHub Actions via GitBox

Reply via email to