mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
11 lines
375 B
Text
11 lines
375 B
Text
|
#
|
||
|
# Bug#51770: UNINSTALL PLUGIN requires no privileges
|
||
|
#
|
||
|
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;
|