mirror of
https://github.com/MariaDB/server.git
synced 2025-02-13 17:05:35 +01:00
8 lines
154 B
Text
8 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;
|