diff options
author | igor@rurik.mysql.com <> | 2006-04-19 16:08:37 -0700 |
---|---|---|
committer | igor@rurik.mysql.com <> | 2006-04-19 16:08:37 -0700 |
commit | 67458961cf5cf8d50ca9b2b694a84599809b46ec (patch) | |
tree | b31c491b6e9f9f0a97a50e184813b3d1691e8017 /mysql-test/t/func_gconcat.test | |
parent | 881b55d503c02752c9debf5bc80bba0e03084ba8 (diff) | |
download | mariadb-git-67458961cf5cf8d50ca9b2b694a84599809b46ec.tar.gz |
Temporarily commented out a query from the test case for bug 14169 to make it pass with --ps-protocol.
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 |