mirror of
https://github.com/MariaDB/server.git
synced 2025-01-25 00:04:33 +01:00
9 lines
154 B
Text
9 lines
154 B
Text
|
create user user1@localhost;
|
||
|
create role r1 with admin user1@localhost;
|
||
|
grant all on test.* to r1;
|
||
|
select 1;
|
||
|
1
|
||
|
1
|
||
|
drop role r1;
|
||
|
drop user user1@localhost;
|