Commit 4c205a65 authored by Davi Arnaut's avatar Davi Arnaut

Post-merge fix: remove unnecessary flush privileges.

parent 81ffd72a
...@@ -6,6 +6,5 @@ INSTALL PLUGIN example SONAME 'ha_example.so'; ...@@ -6,6 +6,5 @@ INSTALL PLUGIN example SONAME 'ha_example.so';
UNINSTALL PLUGIN example; UNINSTALL PLUGIN example;
ERROR 42000: DELETE command denied to user 'bug51770'@'localhost' for table 'plugin' ERROR 42000: DELETE command denied to user 'bug51770'@'localhost' for table 'plugin'
GRANT DELETE ON mysql.plugin TO bug51770@localhost; GRANT DELETE ON mysql.plugin TO bug51770@localhost;
FLUSH PRIVILEGES;
UNINSTALL PLUGIN example; UNINSTALL PLUGIN example;
DROP USER bug51770@localhost; DROP USER bug51770@localhost;
...@@ -12,7 +12,6 @@ eval INSTALL PLUGIN example SONAME $HA_EXAMPLE_SO; ...@@ -12,7 +12,6 @@ eval INSTALL PLUGIN example SONAME $HA_EXAMPLE_SO;
UNINSTALL PLUGIN example; UNINSTALL PLUGIN example;
connection default; connection default;
GRANT DELETE ON mysql.plugin TO bug51770@localhost; GRANT DELETE ON mysql.plugin TO bug51770@localhost;
FLUSH PRIVILEGES;
connection con1; connection con1;
UNINSTALL PLUGIN example; UNINSTALL PLUGIN example;
disconnect con1; disconnect con1;
......
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