summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_str.test
diff options
context:
space:
mode:
authorAlexey Kopytov <Alexey.Kopytov@sun.com>2009-02-06 12:51:11 +0300
committerAlexey Kopytov <Alexey.Kopytov@sun.com>2009-02-06 12:51:11 +0300
commitb30239bc1a3e73f4ad4f1ecac9cc1e193f7a0b61 (patch)
tree7c127b2641b6000e831a8deb2064ca0cd4311ab6 /mysql-test/t/func_str.test
parent759b626d11e4ee6402a510e570ac83864e8844d4 (diff)
downloadmariadb-git-b30239bc1a3e73f4ad4f1ecac9cc1e193f7a0b61.tar.gz
Temporarily reverted patch for bug #41868 as it was causing problems in PB.
Diffstat (limited to 'mysql-test/t/func_str.test')
-rw-r--r--mysql-test/t/func_str.test9
1 files changed, 0 insertions, 9 deletions
diff --git a/mysql-test/t/func_str.test b/mysql-test/t/func_str.test
index 389538c4cc0..8298a50c277 100644
--- a/mysql-test/t/func_str.test
+++ b/mysql-test/t/func_str.test
@@ -1159,13 +1159,4 @@ select format(a, 2) from t1;
--disable_metadata
drop table t1;
-#
-# Bug #41868: crash or memory overrun with concat + upper, date_format functions
-#
-
-CREATE TABLE t1 (c DATE, aa VARCHAR(30));
-INSERT INTO t1 VALUES ('2008-12-31','aaaaaa');
-SELECT DATE_FORMAT(c, GET_FORMAT(DATE, 'eur')) h, CONCAT(UPPER(aa),', ', aa) i FROM t1;
-DROP TABLE t1;
-
--echo End of 5.0 tests