1#
2# Bug #28986737 / #93388 "Renaming and replacing mysql.user table can lead to a server crash"
3# fixed in 5.5.64, 5.6.44, 5.7.26, 8.0.16
4# A damaged mysql.user table could cause a server exit.
5#
6CALL mtr.add_suppression("\\[ERROR\\] Fatal error: mysql\\.user table is damaged with missing password column\\.");
7RENAME TABLE mysql.user TO mysql.user_bak;
8CREATE TABLE mysql.user(dummy INT);
9FLUSH PRIVILEGES;
10ERROR HY000: Unknown error
11DROP TABLE mysql.user;
12RENAME TABLE mysql.user_bak TO mysql.user;
13