summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_gconcat.test
diff options
context:
space:
mode:
authorgkodinov/kgeorge@macbook.gmz <>2006-11-30 18:49:50 +0200
committergkodinov/kgeorge@macbook.gmz <>2006-11-30 18:49:50 +0200
commit8b8e8202242fc5435453d0fdd965c89583e103b4 (patch)
treee609091b6f2968d1f7c241403d736dc8c522c457 /mysql-test/t/func_gconcat.test
parent5a35274b2be3bf67e619475d09471d220504b5ce (diff)
parent36e7fbc033d2c084c485ac108b66cc22c70a7af1 (diff)
downloadmariadb-git-8b8e8202242fc5435453d0fdd965c89583e103b4.tar.gz
Merge bk-internal:/home/bk/mysql-5.0-opt
into macbook.gmz:/Users/kgeorge/mysql/work/B11927-5.0-opt
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 bdc267d56db..3ff4b35873b 100644
--- a/mysql-test/t/func_gconcat.test
+++ b/mysql-test/t/func_gconcat.test
@@ -31,8 +31,8 @@ select grp,group_concat(d order by a) from t1 group by grp;
select grp,group_concat(d order by a desc) from t1 group by grp;
--disable_warnings
select grp,group_concat(a order by a,d+c-ascii(c)-a) from t1 group by grp;
---enable_warnings
select grp,group_concat(a order by d+c-ascii(c),a) from t1 group by grp;
+--enable_warnings
select grp,group_concat(c order by 1) from t1 group by grp;
select grp,group_concat(distinct c order by c) from t1 group by grp;
select grp,group_concat(distinct c order by c desc) from t1 group by grp;