• He Zhenxing's avatar
    BUG#41653 rpl_innodb_bug30888 fails sporadically on pushbuild: warning in log · 5e0e486a
    He Zhenxing authored
    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.
    
    mysql-test/include/mtr_warnings.sql:
      change the type of `text` to mediumtext
    5e0e486a
mtr_warnings.sql 8.79 KB