1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-05 16:59:35 +03:00
mariadb/mysql-test/r/empty_user_table.result
2013-05-21 09:42:10 +02:00

9 lines
243 B
Plaintext

create table t1 as select * from mysql.user;
truncate table mysql.user;
flush privileges;
connect(localhost,u1,,test,MASTER_PORT,MASTER_SOCKET);
Got one of the listed errors
insert mysql.user select * from t1;
drop table t1;
flush privileges;