summaryrefslogtreecommitdiff
path: root/mysql-test/include
diff options
context:
space:
mode:
authorHe Zhenxing <zhenxing.he@sun.com>2009-01-21 17:59:31 +0800
committerHe Zhenxing <zhenxing.he@sun.com>2009-01-21 17:59:31 +0800
commit63256ef9550d7904720f59de841d088f9ae78c41 (patch)
tree260751ef27ccaf6fe8f65e27c697d159ff941973 /mysql-test/include
parent37e91accb06bf2509998436b1a8eb3c385bcc748 (diff)
downloadmariadb-git-63256ef9550d7904720f59de841d088f9ae78c41.tar.gz
BUG#41653 rpl_innodb_bug30888 fails sporadically on pushbuild: warning in log
In mtr.check_warnings, `text` was declares as type text, which is 64K, and when the server log grows larger than this, it would be truncated, and then check_warnings was actually checking the error messages of a previous test and complain warnings. This patch fixed the problem by change the type of `text` to mediumtext, which is 16M.
Diffstat (limited to 'mysql-test/include')
-rw-r--r--mysql-test/include/mtr_warnings.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/include/mtr_warnings.sql b/mysql-test/include/mtr_warnings.sql
index 35aca648a71..3da64fbd791 100644
--- a/mysql-test/include/mtr_warnings.sql
+++ b/mysql-test/include/mtr_warnings.sql
@@ -219,7 +219,7 @@ INSERT INTO global_suppressions VALUES
--
CREATE DEFINER=root@localhost PROCEDURE check_warnings(OUT result INT)
BEGIN
- DECLARE `text` text charset utf8;
+ DECLARE `text` mediumtext charset utf8;
DECLARE `pos` bigint unsigned;
-- Don't write these queries to binlog