diff options
author | sergefp@mysql.com <> | 2005-04-27 22:49:42 +0400 |
---|---|---|
committer | sergefp@mysql.com <> | 2005-04-27 22:49:42 +0400 |
commit | 4732c3b5160143192711db33ce95a61351563488 (patch) | |
tree | 938bbf5cc2fb93a77945acf676360422b24b7448 /mysql-test/r/group_by.result | |
parent | 254bb2570cbf27dd05fc22993f5b279e574dbb17 (diff) | |
parent | 9fbdd4e03fe36da1a9948d5961b8d8d9f42f80a8 (diff) | |
download | mariadb-git-4732c3b5160143192711db33ce95a61351563488.tar.gz |
Merge mysql.com:/home/psergey/mysql-4.1-bug9298
into mysql.com:/home/psergey/mysql-5.0-bug9298-merge
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 af69cc83e83..5cee9b15dcd 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; |