Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
2826399e
Commit
2826399e
authored
Oct 18, 2013
by
Vicențiu Ciorbaru
Committed by
Sergei Golubchik
Oct 18, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed failing test due to wrong display order
parent
daf0345a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
mysql-test/r/acl_roles_set_role-multiple-role.result
mysql-test/r/acl_roles_set_role-multiple-role.result
+4
-4
mysql-test/t/acl_roles_set_role-multiple-role.test
mysql-test/t/acl_roles_set_role-multiple-role.test
+2
-0
No files found.
mysql-test/r/acl_roles_set_role-multiple-role.result
View file @
2826399e
...
...
@@ -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
...
...
mysql-test/t/acl_roles_set_role-multiple-role.test
View file @
2826399e
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment