summaryrefslogtreecommitdiff
path: root/mysql-test/r/group_by.result
diff options
context:
space:
mode:
authorsergefp@mysql.com <>2005-04-27 22:49:42 +0400
committersergefp@mysql.com <>2005-04-27 22:49:42 +0400
commit4732c3b5160143192711db33ce95a61351563488 (patch)
tree938bbf5cc2fb93a77945acf676360422b24b7448 /mysql-test/r/group_by.result
parent254bb2570cbf27dd05fc22993f5b279e574dbb17 (diff)
parent9fbdd4e03fe36da1a9948d5961b8d8d9f42f80a8 (diff)
downloadmariadb-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.result9
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;