summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_gconcat.test
diff options
context:
space:
mode:
authorkostja@bodhi.local <>2006-10-23 12:06:59 +0400
committerkostja@bodhi.local <>2006-10-23 12:06:59 +0400
commit4cb57ac0485e69a84f27d5136e68018b67dd7132 (patch)
tree48398b537ee608f80f6d1155dea687ca9d0e8239 /mysql-test/t/func_gconcat.test
parent99b572b9ebdcc0fe1037bd764d58cf35fca2090d (diff)
parent850688194bd6ead7da000104ee982e5c7e604640 (diff)
downloadmariadb-git-4cb57ac0485e69a84f27d5136e68018b67dd7132.tar.gz
Merge bk-internal.mysql.com:/home/bk/mysql-5.1
into bodhi.local:/opt/local/work/mysql-5.1-runtime-merge
Diffstat (limited to 'mysql-test/t/func_gconcat.test')
-rw-r--r--mysql-test/t/func_gconcat.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/func_gconcat.test b/mysql-test/t/func_gconcat.test
index c2035132d06..db3536c6d36 100644
--- a/mysql-test/t/func_gconcat.test
+++ b/mysql-test/t/func_gconcat.test
@@ -98,7 +98,7 @@ select ifnull(group_concat(concat(t1.id, ':', t1.name)), 'shortname') as 'withou
select distinct ifnull(group_concat(concat(t1.id, ':', t1.name)), 'shortname') as 'with distinct: cutoff at length of shortname' from t1;
drop table t1;
-# check zero rows
+# check zero rows (bug#836)
create table t1(id int);
create table t2(id int);
insert into t1 values(0),(1);