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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
e561a346
Commit
e561a346
authored
Jun 23, 2018
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix mtr warnings after
5f051022
parent
95ef8de8
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
13 additions
and
0 deletions
+13
-0
mysql-test/r/grant.result
mysql-test/r/grant.result
+1
-0
mysql-test/r/sp-security.result
mysql-test/r/sp-security.result
+1
-0
mysql-test/suite/roles/grant_revoke_current.result
mysql-test/suite/roles/grant_revoke_current.result
+1
-0
mysql-test/suite/roles/grant_revoke_current.test
mysql-test/suite/roles/grant_revoke_current.test
+2
-0
mysql-test/suite/roles/set_default_role_ps-6960.result
mysql-test/suite/roles/set_default_role_ps-6960.result
+1
-0
mysql-test/suite/roles/set_default_role_ps-6960.test
mysql-test/suite/roles/set_default_role_ps-6960.test
+2
-0
mysql-test/t/grant.test
mysql-test/t/grant.test
+3
-0
mysql-test/t/sp-security.test
mysql-test/t/sp-security.test
+2
-0
No files found.
mysql-test/r/grant.result
View file @
e561a346
...
...
@@ -1447,6 +1447,7 @@ CURRENT_USER()
root@localhost
SET PASSWORD FOR CURRENT_USER() = PASSWORD("admin");
SET PASSWORD FOR CURRENT_USER() = PASSWORD("");
update mysql.user set plugin='';
# Bug#57952
...
...
mysql-test/r/sp-security.result
View file @
e561a346
...
...
@@ -755,6 +755,7 @@ GRANT EXECUTE ON PROCEDURE `test`.`sp1` TO 'root'@'localhost'
GRANT PROXY ON ''@'%' TO 'root'@'localhost' WITH GRANT OPTION
drop procedure sp1;
set password='';
update mysql.user set plugin='';
#
# MDEV-13396 Unexpected "alter routine comand defined" during CREATE OR REPLACE PROCEDURE
#
...
...
mysql-test/suite/roles/grant_revoke_current.result
View file @
e561a346
...
...
@@ -39,4 +39,5 @@ GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY PASSWORD '*34391
GRANT PROXY ON ''@'%' TO 'root'@'localhost' WITH GRANT OPTION
GRANT USAGE ON *.* TO 'r1'
set password='';
update mysql.user set plugin='';
drop role r1;
mysql-test/suite/roles/grant_revoke_current.test
View file @
e561a346
...
...
@@ -25,5 +25,7 @@ show grants;
grant
r1
to
current_user
()
identified
by
'barfoo'
;
show
grants
;
set
password
=
''
;
#cleanup after MDEV-16238
update
mysql
.
user
set
plugin
=
''
;
drop
role
r1
;
mysql-test/suite/roles/set_default_role_ps-6960.result
View file @
e561a346
...
...
@@ -6,3 +6,4 @@ execute stmt;
set password = '';
set default role NONE;
drop role r1;
update mysql.user set plugin='';
mysql-test/suite/roles/set_default_role_ps-6960.test
View file @
e561a346
...
...
@@ -13,3 +13,5 @@ execute stmt;
set
password
=
''
;
set
default
role
NONE
;
drop
role
r1
;
#cleanup after MDEV-16238
update
mysql
.
user
set
plugin
=
''
;
mysql-test/t/grant.test
View file @
e561a346
...
...
@@ -1265,6 +1265,9 @@ SELECT CURRENT_USER();
SET
PASSWORD
FOR
CURRENT_USER
()
=
PASSWORD
(
"admin"
);
SET
PASSWORD
FOR
CURRENT_USER
()
=
PASSWORD
(
""
);
#cleanup after MDEV-16238
update
mysql
.
user
set
plugin
=
''
;
#
# Bug#57952: privilege change is not taken into account by EXECUTE.
#
...
...
mysql-test/t/sp-security.test
View file @
e561a346
...
...
@@ -1023,6 +1023,8 @@ grant execute on procedure sp1 to current_user() identified by 'barfoo';
show
grants
;
drop
procedure
sp1
;
set
password
=
''
;
#cleanup after MDEV-16238
update
mysql
.
user
set
plugin
=
''
;
--
echo
#
--
echo
# MDEV-13396 Unexpected "alter routine comand defined" during CREATE OR REPLACE PROCEDURE
...
...
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