1call mtr.add_suppression("bad_row_type.frm: invalid value 11 for the field row_format");
2select * from bad_row_type;
3category_id	category_name
4show create table bad_row_type;
5Table	Create Table
6bad_row_type	CREATE TABLE `bad_row_type` (
7  `category_id` int(11) NOT NULL AUTO_INCREMENT,
8  `category_name` varchar(255) DEFAULT NULL,
9  PRIMARY KEY (`category_id`)
10) ENGINE=MyISAM DEFAULT CHARSET=utf8 /* `compression`='tokudb_zlib' */
11show table status like 'bad_row_type';
12Name	Engine	Version	Row_format	Rows	Avg_row_length	Data_length	Max_data_length	Index_length	Data_free	Auto_increment	Create_time	Update_time	Check_time	Collation	Checksum	Create_options	Comment	Max_index_length	Temporary
13bad_row_type	MyISAM	10	Dynamic	0	0	0	281474976710655	1024	0	1	x	x	NULL	utf8_general_ci	NULL	`compression`='tokudb_zlib'		x	N
14drop table bad_row_type;
15