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
root@ub01:~# /stonedb57/install/bin/mysqld --version/stonedb57/install/bin/mysqld Ver 5.7.36-StoneDB for Linux on x86_64 (build-)
build information as follow:
Repository address: https://github.com/hustjieke/stonedb.git:feat_unsigned_support
Branch name: feat_unsigned_support
Last commit ID: 2fb620d93
Last committime: Date: Thu Jan 512:51:052023+0000
Build time: Date: Fri Jan 618:16:48 CST 2023
root@ub01:~# cat /etc/issue
Ubuntu 20.04.5 LTS \n \l
Are you interested in submitting a PR to solve the problem?
Yes, I will!
The text was updated successfully, but these errors were encountered:
mysql> create table big(a bigint default null, b bigint unsigned default null);
Query OK, 0 rows affected (0.02 sec)
mysql> insert into big values(-9223372036854775806, 9223372036854775810);
Query OK, 1 row affected (0.01 sec)
mysql> select * from big;
+----------------------+---------------------+
| a | b |
+----------------------+---------------------+
| -9223372036854775806 | 9223372036854775810 |
+----------------------+---------------------+
1 row in set (0.01 sec)
mysql> select * from big where a=b;
+----------------------+---------------------+
| a | b |
+----------------------+---------------------+
| -9223372036854775806 | 9223372036854775810 |
+----------------------+---------------------+
1 row in set (0.01 sec)
davidshiz
changed the title
bug: UNSIGNED data JOIN statement, return incorrect result set
bug: UNSIGNED bigint data, return incorrect result set
Jan 11, 2023
Have you read the Contributing Guidelines on issues?
Please confirm if bug report does NOT exists already ?
Describe the problem
Expected behavior
How To Reproduce
Environment
Are you interested in submitting a PR to solve the problem?
The text was updated successfully, but these errors were encountered: