mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
7761a278f6
lock acl_cache->lock mutex for the duration of acl_load
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;
|