summaryrefslogtreecommitdiff
path: root/mysql-test/r/plugin_not_embedded.result
blob: 82cfe7b23b857842d616660af40970202bbfcdd3 (plain)
1
2
3
4
5
6
7
8
9
10
#
# 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;