Commit e561a346 authored by Sergei Golubchik's avatar Sergei Golubchik

fix mtr warnings after 5f051022

parent 95ef8de8
...@@ -1447,6 +1447,7 @@ CURRENT_USER() ...@@ -1447,6 +1447,7 @@ CURRENT_USER()
root@localhost root@localhost
SET PASSWORD FOR CURRENT_USER() = PASSWORD("admin"); SET PASSWORD FOR CURRENT_USER() = PASSWORD("admin");
SET PASSWORD FOR CURRENT_USER() = PASSWORD(""); SET PASSWORD FOR CURRENT_USER() = PASSWORD("");
update mysql.user set plugin='';
# Bug#57952 # Bug#57952
......
...@@ -755,6 +755,7 @@ GRANT EXECUTE ON PROCEDURE `test`.`sp1` TO 'root'@'localhost' ...@@ -755,6 +755,7 @@ GRANT EXECUTE ON PROCEDURE `test`.`sp1` TO 'root'@'localhost'
GRANT PROXY ON ''@'%' TO 'root'@'localhost' WITH GRANT OPTION GRANT PROXY ON ''@'%' TO 'root'@'localhost' WITH GRANT OPTION
drop procedure sp1; drop procedure sp1;
set password=''; set password='';
update mysql.user set plugin='';
# #
# MDEV-13396 Unexpected "alter routine comand defined" during CREATE OR REPLACE PROCEDURE # MDEV-13396 Unexpected "alter routine comand defined" during CREATE OR REPLACE PROCEDURE
# #
......
...@@ -39,4 +39,5 @@ GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY PASSWORD '*34391 ...@@ -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 PROXY ON ''@'%' TO 'root'@'localhost' WITH GRANT OPTION
GRANT USAGE ON *.* TO 'r1' GRANT USAGE ON *.* TO 'r1'
set password=''; set password='';
update mysql.user set plugin='';
drop role r1; drop role r1;
...@@ -25,5 +25,7 @@ show grants; ...@@ -25,5 +25,7 @@ show grants;
grant r1 to current_user() identified by 'barfoo'; grant r1 to current_user() identified by 'barfoo';
show grants; show grants;
set password=''; set password='';
#cleanup after MDEV-16238
update mysql.user set plugin='';
drop role r1; drop role r1;
...@@ -6,3 +6,4 @@ execute stmt; ...@@ -6,3 +6,4 @@ execute stmt;
set password = ''; set password = '';
set default role NONE; set default role NONE;
drop role r1; drop role r1;
update mysql.user set plugin='';
...@@ -13,3 +13,5 @@ execute stmt; ...@@ -13,3 +13,5 @@ execute stmt;
set password = ''; set password = '';
set default role NONE; set default role NONE;
drop role r1; drop role r1;
#cleanup after MDEV-16238
update mysql.user set plugin='';
...@@ -1265,6 +1265,9 @@ SELECT CURRENT_USER(); ...@@ -1265,6 +1265,9 @@ SELECT CURRENT_USER();
SET PASSWORD FOR CURRENT_USER() = PASSWORD("admin"); SET PASSWORD FOR CURRENT_USER() = PASSWORD("admin");
SET PASSWORD FOR CURRENT_USER() = PASSWORD(""); 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. # Bug#57952: privilege change is not taken into account by EXECUTE.
# #
......
...@@ -1023,6 +1023,8 @@ grant execute on procedure sp1 to current_user() identified by 'barfoo'; ...@@ -1023,6 +1023,8 @@ grant execute on procedure sp1 to current_user() identified by 'barfoo';
show grants; show grants;
drop procedure sp1; drop procedure sp1;
set password=''; set password='';
#cleanup after MDEV-16238
update mysql.user set plugin='';
--echo # --echo #
--echo # MDEV-13396 Unexpected "alter routine comand defined" during CREATE OR REPLACE PROCEDURE --echo # MDEV-13396 Unexpected "alter routine comand defined" during CREATE OR REPLACE PROCEDURE
......
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