mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
10d09a57f8
Added flush tables to ensure that MyISAM tables are properly flushed before reboot
9 lines
168 B
Text
9 lines
168 B
Text
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;
|