diff options
author | unknown <ramil/ram@ramil.myoffice.izhnet.ru> | 2007-10-23 13:55:06 +0500 |
---|---|---|
committer | unknown <ramil/ram@ramil.myoffice.izhnet.ru> | 2007-10-23 13:55:06 +0500 |
commit | 6e71a0f99b6a8d77ef6886734ce139d5d3b66404 (patch) | |
tree | 158a09f7b6208e5c6d6ab5d5c2415de29f3bbed6 /mysql-test/r/func_misc.result | |
parent | 531193dc422b0f5a05ded78b2db1655cdd460528 (diff) | |
parent | 426b551bf600e4c2d0a78227fe51dc009d0231c7 (diff) | |
download | mariadb-git-6e71a0f99b6a8d77ef6886734ce139d5d3b66404.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.result | 6 |
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 |