1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fix for BUG#9298: Make int->string conversion sign-aware in Protocol_simple::store_long

mysql-test/r/group_by.result:
  Testcase for BUG#9298
mysql-test/t/group_by.test:
  Testcase for BUG#9298
This commit is contained in:
unknown
2005-04-18 07:26:23 +04:00
parent b51f70b81e
commit 11652c1f45
3 changed files with 17 additions and 1 deletions

View File

@ -702,3 +702,12 @@ c
val-74
val-98
drop table t1,t2;
create table t1 (b int4 unsigned not null);
insert into t1 values(3000000000);
select * from t1;
b
3000000000
select min(b) from t1;
min(b)
3000000000
drop table t1;