diff options
author | gluh@gluh.mysql.r18.ru <> | 2005-03-16 16:44:28 +0300 |
---|---|---|
committer | gluh@gluh.mysql.r18.ru <> | 2005-03-16 16:44:28 +0300 |
commit | 41487d0b4e9647e074c5f946caf219f4b837f8e7 (patch) | |
tree | 7fee6588640e9cf5d33b92f655676f9db201beab /mysql-test/r/func_gconcat.result | |
parent | 4c3e8b078c16b30ff70cdc6c2465630a4435722a (diff) | |
download | mariadb-git-41487d0b4e9647e074c5f946caf219f4b837f8e7.tar.gz |
Fix for bug#8656: Crash with group_concat on alias in outer table
fixed result_field support of Item_ref
Diffstat (limited to 'mysql-test/r/func_gconcat.result')
-rw-r--r-- | mysql-test/r/func_gconcat.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/func_gconcat.result b/mysql-test/r/func_gconcat.result index 390b33fdddc..c1ac1c084df 100644 --- a/mysql-test/r/func_gconcat.result +++ b/mysql-test/r/func_gconcat.result @@ -462,3 +462,10 @@ SELECT GROUP_CONCAT(id) AS gc FROM t1 HAVING gc IS NULL; gc NULL 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; |