1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fix for bug#8656: Crash with group_concat on alias in outer table

fixed result_field support of Item_ref
This commit is contained in:
unknown
2005-03-16 16:44:28 +03:00
parent 9245168429
commit a5c87958a6
3 changed files with 16 additions and 0 deletions

View File

@ -284,3 +284,11 @@ drop table t1;
CREATE TABLE t1 (id int);
SELECT GROUP_CONCAT(id) AS gc FROM t1 HAVING gc IS NULL;
DROP TABLE t1;
#
# Bug #8656: Crash with group_concat on alias in outer table
#
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;
drop table r2;