2010-03-09 13:16:17 +01:00
|
|
|
#
|
|
|
|
# Bug#51770: UNINSTALL PLUGIN requires no privileges
|
|
|
|
#
|
2015-08-11 18:45:38 +02:00
|
|
|
CREATE USER bug51770@localhost;
|
2010-03-09 13:16:17 +01:00
|
|
|
GRANT INSERT ON mysql.plugin TO bug51770@localhost;
|
|
|
|
INSTALL PLUGIN example SONAME 'ha_example.so';
|
|
|
|
UNINSTALL PLUGIN example;
|
|
|
|
ERROR 42000: DELETE command denied to user 'bug51770'@'localhost' for table 'plugin'
|
|
|
|
GRANT DELETE ON mysql.plugin TO bug51770@localhost;
|
|
|
|
UNINSTALL PLUGIN example;
|
|
|
|
DROP USER bug51770@localhost;
|
2010-12-01 13:54:50 +01:00
|
|
|
INSTALL PLUGIN example SONAME '../ha_example.so';
|
|
|
|
ERROR HY000: No paths allowed for shared library
|