summaryrefslogtreecommitdiff
path: root/mysql-test/r/func_gconcat.result
diff options
context:
space:
mode:
authorunknown <monty@mashka.mysql.fi>2003-07-01 17:59:42 +0300
committerunknown <monty@mashka.mysql.fi>2003-07-01 17:59:42 +0300
commit2224bbc16abd201828f3c7edfd426198507e7da3 (patch)
tree98266972b4b90cacc8f2dae9b1038b3ee8f350f4 /mysql-test/r/func_gconcat.result
parentc672b5d04b4828a194df6e1a99c8454b07dc2400 (diff)
downloadmariadb-git-2224bbc16abd201828f3c7edfd426198507e7da3.tar.gz
Fixed testcases and bug introduced by last changeset
mysql-test/r/func_gconcat.result: Fixed test case after merge mysql-test/r/grant_cache.result: Updated test case (Wrong push by some developer) mysys/mf_loadpath.c: Fix for my_load_path() and ./directory handling from last changeset
Diffstat (limited to 'mysql-test/r/func_gconcat.result')
-rw-r--r--mysql-test/r/func_gconcat.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/func_gconcat.result b/mysql-test/r/func_gconcat.result
index bf96727a6a7..d518cff45cf 100644
--- a/mysql-test/r/func_gconcat.result
+++ b/mysql-test/r/func_gconcat.result
@@ -169,7 +169,7 @@ select REQ_ID, Group_Concat(URL) as URL from T_URL, T_REQUEST where
T_REQUEST.URL_ID = T_URL.URL_ID group by REQ_ID;
REQ_ID URL
1 www.host.com
-5 www.host.com,www.google.com,www.help.com
+5 www.google.com,www.help.com,www.host.com
drop table T_URL;
drop table T_REQUEST;
select group_concat(sum(a)) from t1 group by grp;