summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_gconcat.test
diff options
context:
space:
mode:
authorunknown <evgen@moonbone.local>2006-04-20 13:34:14 +0400
committerunknown <evgen@moonbone.local>2006-04-20 13:34:14 +0400
commitd27c7a7c80aeb877f5e5069e7fde3c84cfa968ed (patch)
tree304cad18d349dba6dbbed21efa49cf4cb7abe610 /mysql-test/t/func_gconcat.test
parentb30d80e826cfe4925e381ab79e7342e0a5486e94 (diff)
downloadmariadb-git-d27c7a7c80aeb877f5e5069e7fde3c84cfa968ed.tar.gz
func_gconcat.result, func_gconcat.test:
Remove duplicate test case for bug#14169 mysql-test/t/func_gconcat.test: Remove duplicate test case for bug#14169 mysql-test/r/func_gconcat.result: Remove duplicate test case for bug#14169
Diffstat (limited to 'mysql-test/t/func_gconcat.test')
-rw-r--r--mysql-test/t/func_gconcat.test11
1 files changed, 0 insertions, 11 deletions
diff --git a/mysql-test/t/func_gconcat.test b/mysql-test/t/func_gconcat.test
index 5f4c199ae95..e2cc3f24d7a 100644
--- a/mysql-test/t/func_gconcat.test
+++ b/mysql-test/t/func_gconcat.test
@@ -398,17 +398,6 @@ select f1, group_concat(f1+1) from t1 group by f1 with rollup;
select count(distinct (f1+1)) from t1 group by f1 with rollup;
drop table t1;
-#
-# Bug#14169 type of group_concat() result changed to blob if tmp_table was used
-#
-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;
---disable_metadata
-drop table t1;
-
# End of 4.1 tests
#