mirror of
https://github.com/MariaDB/server.git
synced 2025-08-02 16:41:31 +02: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;
|