1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Fixed test case to work on NetWare.

This commit is contained in:
greg@mysql.com
2003-10-08 00:19:44 -04:00
parent 69c206915f
commit 7a6239640f
2 changed files with 2 additions and 2 deletions

View File

@@ -168,7 +168,7 @@ REQ_ID URL
1 X 1 X
5 X,X,X 5 X,X,X
select REQ_ID, Group_Concat(URL) as URL, Min(t1.URL_ID) urll, select REQ_ID, Group_Concat(URL) as URL, Min(t1.URL_ID) urll,
Max(t1.URL_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 REQ_ID URL urll urlg
1 X 4 4 1 X 4 4
5 X,X,X 4 5 5 X,X,X 4 5

View File

@@ -94,7 +94,7 @@ t2.URL_ID = t1.URL_ID group by REQ_ID;
# check min/max function # check min/max function
--replace_result www.help.com X www.host.com X www.google.com X --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, select REQ_ID, Group_Concat(URL) as URL, Min(t1.URL_ID) urll,
Max(t1.URL_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 t1;
drop table t2; drop table t2;