1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fix for bug#18281 group_concat changes charset to binary

skip charset aggregation for order columns
This commit is contained in:
unknown
2006-04-07 13:19:31 +05:00
parent db7a88a2f4
commit 2f2607faef
3 changed files with 17 additions and 1 deletions

View File

@ -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;