summaryrefslogtreecommitdiff
path: root/mysql-test/r/func_gconcat.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/func_gconcat.result')
-rw-r--r--mysql-test/r/func_gconcat.result8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/func_gconcat.result b/mysql-test/r/func_gconcat.result
index 06c1759bf1d..d56a5050ced 100644
--- a/mysql-test/r/func_gconcat.result
+++ b/mysql-test/r/func_gconcat.result
@@ -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;
+