diff options
author | unknown <sergefp@mysql.com> | 2005-04-18 07:26:23 +0400 |
---|---|---|
committer | unknown <sergefp@mysql.com> | 2005-04-18 07:26:23 +0400 |
commit | 11652c1f45f1c6be6c15abfe926da1cef1b8b4f9 (patch) | |
tree | 5fc1e3795dc327d3d082cc3a217cbe7058e6a34a /mysql-test/r/group_by.result | |
parent | b51f70b81e6af314093dd28728a3dc68d1a28fff (diff) | |
download | mariadb-git-11652c1f45f1c6be6c15abfe926da1cef1b8b4f9.tar.gz |
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
Diffstat (limited to 'mysql-test/r/group_by.result')
-rw-r--r-- | mysql-test/r/group_by.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/group_by.result b/mysql-test/r/group_by.result index a8766907fa5..b0c00a51722 100644 --- a/mysql-test/r/group_by.result +++ b/mysql-test/r/group_by.result @@ -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; |