1CALL mtr.add_suppression("Column count of mysql\\.user is wrong\\. Expected [0-9]+, found [0-9]+\\. The table is probably corrupted"); 2ALTER TABLE mysql.user RENAME mysql.user_bak; 3CREATE TABLE mysql.user( 4Host CHAR BINARY DEFAULT '', 5User CHAR BINARY DEFAULT '', 6PasswONs INT UNSIGNED, 7PRIMARY KEY Host (Host, User) 8) ENGINE=MyISAM; 9FLUSH PRIVILEGES; 10CREATE TABLE t1( 11a INT UNSIGNED, 12b INT UNSIGNED, 13c CHAR(50), 14d BINARY(23), 15e CHAR(48), 16f VARCHAR(37), 17g BLOB, 18h BLOB, 19id INT, 20KEY(b), 21KEY(e) 22) ENGINE=MyISAM; 23GRANT PROXY ON qa_test_11_dest TO qa_test_11_user; 24ERROR HY000: Column count of mysql.user is wrong. Expected 45, found 3. The table is probably corrupted 25DROP TABLE t1; 26DROP TABLE mysql.user; 27ALTER TABLE mysql.user_bak RENAME mysql.user; 28FLUSH PRIVILEGES; 29