1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Fix for bug#18281 group_concat changes charset to binary

skip charset aggregation for order columns
This commit is contained in:
gluh@eagle.intranet.mysql.r18.ru
2006-04-07 13:19:31 +05:00
parent fe7ea20764
commit 4ef7e5b5f7
3 changed files with 17 additions and 1 deletions

View File

@@ -414,3 +414,11 @@ select charset(a) from t2;
select charset(a) from t3;
drop table t1, t2, t3;
set names default;
#
# Bug#18281 group_concat changes charset to binary
#
create table t1 (c1 varchar(10), c2 int);
select charset(group_concat(c1 order by c2)) from t1;
drop table t1;