Commit 2826399e authored by Vicențiu Ciorbaru's avatar Vicențiu Ciorbaru Committed by Sergei Golubchik

Fixed failing test due to wrong display order

parent daf0345a
......@@ -68,13 +68,13 @@ Grants for test_user@localhost
GRANT USAGE ON *.* TO 'test_user'@'localhost'
select * from mysql.roles_mapping;
HostFk UserFk RoleFk
localhost test_user r_sel
localhost test_user r_ins
localhost test_user r_upd
localhost test_user r_del
localhost test_user r_crt
localhost test_user r_del
localhost test_user r_drp
localhost test_user r_ins
localhost test_user r_rld
localhost test_user r_sel
localhost test_user r_upd
set role r_ins;
show grants;
Grants for test_user@localhost
......
......@@ -60,6 +60,7 @@ select * from mysql.roles_mapping;
show grants;
set role r_sel;
show grants;
--sorted_result
select * from mysql.roles_mapping;
set role r_ins;
......@@ -104,6 +105,7 @@ set role r_sel;
create table mysql.random_test_table (id INT);
insert into mysql.random_test_table values (1);
--sorted_result
select * from mysql.random_test_table;
delete from mysql.roles_mapping where RoleFk='r_ins';
flush privileges;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment