diff options
author | unknown <guilhem@mysql.com> | 2005-01-15 10:21:50 +0100 |
---|---|---|
committer | unknown <guilhem@mysql.com> | 2005-01-15 10:21:50 +0100 |
commit | e4b2a04e4601e9ac7eb6a18c4e9ae04ffaff7db1 (patch) | |
tree | 7aacf3a71d311464832edae16db5ee2af75f267e /mysql-test/r | |
parent | 8d5cfa7770e852dbcc1004c73d2889db0ac4f420 (diff) | |
parent | 16f3170e7352b06a8b142bfef89bbcc383c2a676 (diff) | |
download | mariadb-git-e4b2a04e4601e9ac7eb6a18c4e9ae04ffaff7db1.tar.gz |
Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/mysql_src/mysql-4.1-clean
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/func_gconcat.result | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/func_gconcat.result b/mysql-test/r/func_gconcat.result index aa202823c77..390b33fdddc 100644 --- a/mysql-test/r/func_gconcat.result +++ b/mysql-test/r/func_gconcat.result @@ -457,3 +457,8 @@ group_concat(distinct b order by b) Warnings: Warning 1260 2 line(s) were cut by GROUP_CONCAT() drop table t1; +CREATE TABLE t1 (id int); +SELECT GROUP_CONCAT(id) AS gc FROM t1 HAVING gc IS NULL; +gc +NULL +DROP TABLE t1; |