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

Merge 4.1 -> 5.0

This commit is contained in:
gluh@gluh.mysql.r18.ru
2005-03-17 16:51:07 +03:00
26 changed files with 394 additions and 95 deletions

View File

@@ -469,3 +469,11 @@ group_concat(a)
ABW
ABW
drop table t1;
create table r2 (a int, b int);
insert into r2 values (1,1), (2,2);
select b x, (select group_concat(x) from r2) from r2;
x (select group_concat(x) from r2)
1 1,1
2 2,2
drop table r2;