1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00
Files
mariadb/mysql-test/suite/roles/acl_load_mutex-5170.result
Michael Widenius d572c19f22 Added flush tables to acl_load_mutex-5170.test
This is needed as otherwise a lot of MyISAM tables may be marked
as crashed, depending on in which order tests are run
2018-03-29 13:59:44 +03:00

10 lines
168 B
Plaintext

create user user1@localhost;
create role r1 with admin user1@localhost;
grant all on test.* to r1;
flush tables;
select 1;
1
1
drop role r1;
drop user user1@localhost;