mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
f1a71b6815
(and an assert in myisam to catch these bugs easier in the future) update tests/results
19 lines
330 B
Text
19 lines
330 B
Text
create role r1;
|
|
grant r1 to root@localhost;
|
|
create user u1;
|
|
set role r1;
|
|
|
|
grant r1 to u1;
|
|
--sorted_result
|
|
select * from mysql.roles_mapping;
|
|
|
|
drop user u1;
|
|
--sorted_result
|
|
select * from mysql.roles_mapping;
|
|
--sorted_result
|
|
show grants;
|
|
drop role r1;
|
|
--sorted_result
|
|
select * from mysql.roles_mapping;
|
|
--sorted_result
|
|
show grants;
|