1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Temporarily reverted patch for bug #41868 as it was causing problems in PB.

This commit is contained in:
Alexey Kopytov
2009-02-06 12:51:11 +03:00
parent e266164832
commit 0a6c553510
5 changed files with 20 additions and 40 deletions

View File

@@ -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