1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-10 23:02:54 +03:00

Temporarily commented out a query from the test case for bug 14169 to make it pass with --ps-protocol.

mysql-test/r/func_gconcat.result:
  Added DROP TABLE command to the test case for bug 14169.
This commit is contained in:
unknown
2006-04-19 16:08:37 -07:00
parent 34efb701ed
commit e4d653abb8
2 changed files with 4 additions and 1 deletions

View File

@@ -398,6 +398,8 @@ create table t1 (f1 int unsigned, f2 varchar(255));
insert into t1 values (1,repeat('a',255)),(2,repeat('b',255));
--enable_metadata
select f2,group_concat(f1) from t1 group by f2;
select f2,group_concat(f1) from t1 group by f2 order by 2;
# select f2,group_concat(f1) from t1 group by f2 order by 2;
--disable_metadata
drop table t1;
# End of 4.1 tests