diff options
author | unknown <igor@rurik.mysql.com> | 2006-04-19 16:08:37 -0700 |
---|---|---|
committer | unknown <igor@rurik.mysql.com> | 2006-04-19 16:08:37 -0700 |
commit | e4d653abb8a2b25ca932c75e61e75a97f49bd34c (patch) | |
tree | b31c491b6e9f9f0a97a50e184813b3d1691e8017 /mysql-test/t/func_gconcat.test | |
parent | 34efb701ed29b73270cbb0305564d8325f9655ef (diff) | |
download | mariadb-git-e4d653abb8a2b25ca932c75e61e75a97f49bd34c.tar.gz |
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.
Diffstat (limited to 'mysql-test/t/func_gconcat.test')
-rw-r--r-- | mysql-test/t/func_gconcat.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/t/func_gconcat.test b/mysql-test/t/func_gconcat.test index 1bb49a312b8..ed35c7534f6 100644 --- a/mysql-test/t/func_gconcat.test +++ b/mysql-test/t/func_gconcat.test @@ -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 |