diff --git a/mysql-test/r/func_gconcat.result b/mysql-test/r/func_gconcat.result index 5c3c2f10000..2b6079d5ffd 100644 --- a/mysql-test/r/func_gconcat.result +++ b/mysql-test/r/func_gconcat.result @@ -168,7 +168,7 @@ REQ_ID URL 1 X 5 X,X,X select REQ_ID, Group_Concat(URL) as URL, Min(t1.URL_ID) urll, -Max(t1.URL_ID) urlg from t1, t2 where t2.URL_ID = t1.URL_ID group by REQ_ID; +Max(t1.URL_ID) urlg from t1, t2 where t2.URL_ID = t1.URL_ID group by REQ_ID; REQ_ID URL urll urlg 1 X 4 4 5 X,X,X 4 5 diff --git a/mysql-test/t/func_gconcat.test b/mysql-test/t/func_gconcat.test index b10f6d2af21..e82d732d42c 100644 --- a/mysql-test/t/func_gconcat.test +++ b/mysql-test/t/func_gconcat.test @@ -94,7 +94,7 @@ t2.URL_ID = t1.URL_ID group by REQ_ID; # check min/max function --replace_result www.help.com X www.host.com X www.google.com X select REQ_ID, Group_Concat(URL) as URL, Min(t1.URL_ID) urll, -Max(t1.URL_ID) urlg from t1, t2 where t2.URL_ID = t1.URL_ID group by REQ_ID; +Max(t1.URL_ID) urlg from t1, t2 where t2.URL_ID = t1.URL_ID group by REQ_ID; drop table t1; drop table t2;