blob: 54a7fd4907bfcf2f94c8c9d097bb5ababda16ca5 (
plain)
1
2
3
4
5
6
7
8
9
|
create table t1 as select * from mysql.user;
truncate table mysql.user;
flush privileges;
connect(localhost,u1,,test,MASTER_PORT,MASTER_SOCKET);
connect fail,localhost,u1;
Got one of the listed errors
insert mysql.user select * from t1;
drop table t1;
flush privileges;
|