diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-02-28 19:00:58 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-02-28 19:00:58 +0100 |
commit | 6b31e63177e0c16d92e460302bae9b2c92c8f500 (patch) | |
tree | d206f4c8848a50899d8d0656e8c8212189365ace /mysql-test/r/user_var.result | |
parent | f4e7c093726a0143fd734b588c10e2b7780fe9ab (diff) | |
parent | 3251e4549c7541557546d0550ddfafa1574fe5ce (diff) | |
download | mariadb-git-6b31e63177e0c16d92e460302bae9b2c92c8f500.tar.gz |
5.1 -> 5.2 merge
Diffstat (limited to 'mysql-test/r/user_var.result')
-rw-r--r-- | mysql-test/r/user_var.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/user_var.result b/mysql-test/r/user_var.result index 0f79e30bfd1..6cefc59f874 100644 --- a/mysql-test/r/user_var.result +++ b/mysql-test/r/user_var.result @@ -463,6 +463,8 @@ GROUP BY @b:=(SELECT COUNT(*) > t2.a); @a:=MIN(t1.a) 1 DROP TABLE t1; +SET @bug12408412=1; +SELECT GROUP_CONCAT(@bug12408412 ORDER BY 1) INTO @bug12408412; End of 5.1 tests CREATE TABLE t1(a INT); INSERT INTO t1 VALUES (0); @@ -496,3 +498,4 @@ SELECT @a; @a 1 DROP TABLE t1; +End of 5.2 tests |