diff options
author | bell@sanja.is.com.ua <> | 2004-05-14 18:55:24 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2004-05-14 18:55:24 +0300 |
commit | 712d379b5ef56da19f5e1077d46a93d61bb99f1b (patch) | |
tree | e80e519af3e0f13832739ea11cb94c83d5efedd3 /mysql-test/r/func_gconcat.result | |
parent | 94321588314db64f47b8d402d0263cd27900f728 (diff) | |
download | mariadb-git-712d379b5ef56da19f5e1077d46a93d61bb99f1b.tar.gz |
check of item name presence in find_item_in_list (Bug #3752)
Diffstat (limited to 'mysql-test/r/func_gconcat.result')
-rw-r--r-- | mysql-test/r/func_gconcat.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/func_gconcat.result b/mysql-test/r/func_gconcat.result index fdde8f766a9..11d976b9d15 100644 --- a/mysql-test/r/func_gconcat.result +++ b/mysql-test/r/func_gconcat.result @@ -301,3 +301,12 @@ a c grp 2 4 4 1 2 5 drop table t1,t2; +CREATE TABLE t1 ( a int ); +CREATE TABLE t2 ( a int ); +INSERT INTO t1 VALUES (1), (2); +INSERT INTO t2 VALUES (1), (2); +SELECT GROUP_CONCAT(t1.a*t2.a ORDER BY t1.a) FROM t1, t2 GROUP BY t1.a; +GROUP_CONCAT(t1.a*t2.a ORDER BY t1.a) +2,1 +4,2 +DROP TABLE t1, t2; |