## Bug#34300 Tinyblob & tinytext fields currupted after export/import and alter in 5.1# http://bugs.mysql.com/34300#--sourceinclude/have_innodb.inc--disable_query_log--disable_result_logcallmtr.add_suppression("InnoDB: The total blob data length");# set packet size and reconnect let$max_packet=`select @@global.max_allowed_packet`;SET@@global.max_allowed_packet=16777216;--connect(newconn,localhost,root,,)--enable_result_logCREATETABLEbug34300(f4TINYTEXT,f6MEDIUMTEXT,f8TINYBLOB)ENGINE=InnoDB;--replace_regex/\(>[0-9]*\)/(>####)/--errorER_TOO_BIG_ROWSIZEINSERTINTObug34300VALUES('xxx',repeat('a',8459264),'zzz');SELECTf4,f8FROMbug34300;ALTERTABLEbug34300ADDCOLUMN(f10INT);SELECTf4,f8FROMbug34300;DROPTABLEbug34300;EVALSET@@global.max_allowed_packet=$max_packet;