diff options
author | unknown <gluh@eagle.intranet.mysql.r18.ru> | 2006-04-07 13:19:31 +0500 |
---|---|---|
committer | unknown <gluh@eagle.intranet.mysql.r18.ru> | 2006-04-07 13:19:31 +0500 |
commit | 2f2607faeffb09d946e09a5f090a24449e73742b (patch) | |
tree | c322a074ea323decf45e8227843c0aedefc6e931 /mysql-test/r/func_gconcat.result | |
parent | db7a88a2f40b9b80262ba2ddf455b90172b0f413 (diff) | |
download | mariadb-git-2f2607faeffb09d946e09a5f090a24449e73742b.tar.gz |
Fix for bug#18281 group_concat changes charset to binary
skip charset aggregation for order columns
Diffstat (limited to 'mysql-test/r/func_gconcat.result')
-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 f1c9f8b9f76..7889f8953f4 100644 --- a/mysql-test/r/func_gconcat.result +++ b/mysql-test/r/func_gconcat.result @@ -626,3 +626,8 @@ latin1 latin1 drop table t1, t2, t3; set names default; +create table t1 (c1 varchar(10), c2 int); +select charset(group_concat(c1 order by c2)) from t1; +charset(group_concat(c1 order by c2)) +latin1 +drop table t1; |