diff options
author | bar@mysql.com <> | 2005-09-07 14:57:27 +0500 |
---|---|---|
committer | bar@mysql.com <> | 2005-09-07 14:57:27 +0500 |
commit | cd5cd2bf79980459e0fed7dca8428aab02e04ba2 (patch) | |
tree | a0a4fca657a4f67b74274b1f305cdd52f1e549c9 /mysql-test/t/func_gconcat.test | |
parent | 03d10aeaca9f308f17b300044860bf6aad19e657 (diff) | |
parent | 2ff61bd6970818cbad3b07556087175443b3939a (diff) | |
download | mariadb-git-cd5cd2bf79980459e0fed7dca8428aab02e04ba2.tar.gz |
Merge mysql.com:/usr/home/bar/mysql-4.1.b12829
into mysql.com:/usr/home/bar/mysql-5.0
Diffstat (limited to 'mysql-test/t/func_gconcat.test')
-rw-r--r-- | mysql-test/t/func_gconcat.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/t/func_gconcat.test b/mysql-test/t/func_gconcat.test index 0b61a445270..896c377662b 100644 --- a/mysql-test/t/func_gconcat.test +++ b/mysql-test/t/func_gconcat.test @@ -282,6 +282,16 @@ drop table t1; drop table t2; # +# Bug #12829 +# Cannot convert the charset of a GROUP_CONCAT result +# +CREATE TABLE t1 (a CHAR(10) CHARACTER SET cp850); +INSERT INTO t1 VALUES ('À'); +SELECT a FROM t1; +SELECT GROUP_CONCAT(a) FROM t1; +DROP TABLE t1; + +# # bug #7769: group_concat returning null is checked in having # CREATE TABLE t1 (id int); |