List:Commits« Previous MessageNext Message »
From:He Zhenxing Date:January 15 2009 10:45am
Subject:bzr commit into mysql-5.1 branch (zhenxing.he:2709) Bug#41653
View as plain text  
#At file:///media/sdb2/hezx/work/mysql/bzrwork/b41653/5.1-rpl/

 2709 He Zhenxing	2009-01-15
      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.
modified:
  mysql-test/include/mtr_warnings.sql

per-file messages:
  mysql-test/include/mtr_warnings.sql
    change the type of `text` to mediumtext
=== modified file 'mysql-test/include/mtr_warnings.sql'
--- a/mysql-test/include/mtr_warnings.sql	2008-12-13 19:42:12 +0000
+++ b/mysql-test/include/mtr_warnings.sql	2009-01-15 10:44:55 +0000
@@ -218,7 +218,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

Thread
bzr commit into mysql-5.1 branch (zhenxing.he:2709) Bug#41653He Zhenxing15 Jan
  • Re: bzr commit into mysql-5.1 branch (zhenxing.he:2709) Bug#41653Luís Soares20 Jan