summaryrefslogtreecommitdiff
path: root/mysql-test/r/func_misc.result
diff options
context:
space:
mode:
authorunknown <ramil/ram@ramil.myoffice.izhnet.ru>2007-10-23 13:55:06 +0500
committerunknown <ramil/ram@ramil.myoffice.izhnet.ru>2007-10-23 13:55:06 +0500
commit91c8ad89133e803bc4e61a1d11b5bccea3c9f85a (patch)
tree158a09f7b6208e5c6d6ab5d5c2415de29f3bbed6 /mysql-test/r/func_misc.result
parent03cee4936e2c474a52011d1f939de85b04545316 (diff)
parent73eafcbf1cc57d0e9a890dad38ba611d496ab5ea (diff)
downloadmariadb-git-91c8ad89133e803bc4e61a1d11b5bccea3c9f85a.tar.gz
Merge mysql.com:/home/ram/work/b31349/b31349.5.0
into mysql.com:/home/ram/work/b31349/b31349.5.1 mysql-test/r/func_misc.result: Auto merged mysql-test/t/func_misc.test: Auto merged sql/item_strfunc.h: Auto merged
Diffstat (limited to 'mysql-test/r/func_misc.result')
-rw-r--r--mysql-test/r/func_misc.result6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/func_misc.result b/mysql-test/r/func_misc.result
index 39bf1470afe..946a07d0eb2 100644
--- a/mysql-test/r/func_misc.result
+++ b/mysql-test/r/func_misc.result
@@ -190,6 +190,12 @@ ERROR 21000: Operand should contain 1 column(s)
drop table table_26093;
drop function func_26093_a;
drop function func_26093_b;
+create table t1 (a int not null);
+insert into t1 values (-1), (-2);
+select min(a) from t1 group by inet_ntoa(a);
+min(a)
+-2
+drop table t1;
End of 5.0 tests
select connection_id() > 0;
connection_id() > 0