summaryrefslogtreecommitdiff
path: root/mysql-test/main/func_gconcat.test
diff options
context:
space:
mode:
authorVarun Gupta <varun.gupta@mariadb.com>2019-05-02 14:38:43 +0530
committerVarun Gupta <varun.gupta@mariadb.com>2019-05-03 08:50:40 +0530
commit879878e43d5ffd2bf4d18ffe4d0186f8926e58ca (patch)
tree7f21d3d6b599d24d83fe00f597fd513095fa80be /mysql-test/main/func_gconcat.test
parent5182348316bfe5a3b78484caf76875a5aaa77f5f (diff)
downloadmariadb-git-879878e43d5ffd2bf4d18ffe4d0186f8926e58ca.tar.gz
MDEV-18943: Group Concat with limit not working with views
Adjusted the Item_func_group_concat::print function to take into account limit if present with GROUP_CONCAT
Diffstat (limited to 'mysql-test/main/func_gconcat.test')
-rw-r--r--mysql-test/main/func_gconcat.test12
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/main/func_gconcat.test b/mysql-test/main/func_gconcat.test
index 5cbc6969e02..b8ab96bdea4 100644
--- a/mysql-test/main/func_gconcat.test
+++ b/mysql-test/main/func_gconcat.test
@@ -986,5 +986,17 @@ execute STMT using @x;
drop table t2;
--echo #
+--echo # MDEV-18943: Group Concat with limit not working with views
+--echo #
+
+create table t1 (a int, b varchar(10));
+insert into t1 values(1,'a'),(1,'b'),(NULL,'c'),(2,'x'),(2,'y');
+select group_concat(a,b limit 2) from t1;
+create view v1 as select group_concat(a,b limit 2) from t1;
+select * from v1;
+drop view v1;
+drop table t1;
+
+--echo #
--echo # End of 10.3 tests
--echo #