diff options
Diffstat (limited to 'mysql-test/main/plugin_load_option.result')
-rw-r--r-- | mysql-test/main/plugin_load_option.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/main/plugin_load_option.result b/mysql-test/main/plugin_load_option.result new file mode 100644 index 00000000..fec41bac --- /dev/null +++ b/mysql-test/main/plugin_load_option.result @@ -0,0 +1,7 @@ +UNINSTALL PLUGIN example; +ERROR HY000: Plugin 'example' is force_plus_permanent and can not be unloaded +SELECT PLUGIN_NAME, PLUGIN_STATUS, LOAD_OPTION FROM INFORMATION_SCHEMA.PLUGINS +WHERE PLUGIN_NAME IN ('MyISAM', 'EXAMPLE'); +PLUGIN_NAME PLUGIN_STATUS LOAD_OPTION +MyISAM ACTIVE FORCE +EXAMPLE ACTIVE FORCE_PLUS_PERMANENT |