You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
set sql_mode='NO_UNSIGNED_SUBTRACTION';
select cast(13 as unsigned) - (-9223372036854775807);
select (-9223372036854775807) - cast(9223372036854775807 as unsigned);
2. What did you expect to see? (Required)
select cast(13 as unsigned) - (-9223372036854775807);
(1690, "BIGINT value is out of range in '(cast(13 as unsigned) - -(9223372036854775807))'")
select (-9223372036854775807) - cast(9223372036854775807 as unsigned);
(1690, "BIGINT value is out of range in '(-(9223372036854775807) - cast(9223372036854775807 as unsigned))'")
3. What did you see instead (Required)
select cast(13 as unsigned) - (-9223372036854775807);
(1690, "BIGINT value is out of range in '(13 + -9223372036854775807)'")
select (-9223372036854775807) - cast(9223372036854775807 as unsigned);
(1690, "BIGINT value is out of range in '(-9223372036854775807 + 9223372036854775807)'")
4. What is your TiDB version? (Required)
Release Version: v4.0.0-beta.2-2089-g0755feca8
Edition: Community
Git Commit Hash: 0755feca883fae44727db7da376f409cf2916f2e
Git Branch: refineWindowProcessor
UTC Build Time: 2021-01-31 07:15:08
GoVersion: go1.15.6
Race Enabled: false
TiKV Min Version: v3.0.0-60965b006877ca7234adaced7890d7b029ed1306
Check Table Before Drop: false
The text was updated successfully, but these errors were encountered:
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
2. What did you expect to see? (Required)
3. What did you see instead (Required)
4. What is your TiDB version? (Required)
The text was updated successfully, but these errors were encountered: