matrixone
matrixone copied to clipboard
[Bug]: set BIGINT UNSIGNED max value, select result abnormal.
Is there an existing issue for the same bug?
- [X] I have checked the existing issues.
Environment
- Version or commit-id (e.g. v0.1.0 or 8b23a93):
- Hardware parameters:
- OS type:
- Others:
Actual Behavior
set @maxint=18446744073709551615;
select @maxint;
+---------+ | @maxint | +---------+ | -1 | +---------+
Expected Behavior
set @maxint=18446744073709551615;
select @maxint;
mysql> select @maxint; +----------------------+ | @maxint | +----------------------+ | 18446744073709551615 | +----------------------+
Steps to Reproduce
No response
Additional information
No response