diff options
author | Sergey Vojtovich <svoj@sun.com> | 2010-09-27 17:03:27 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@sun.com> | 2010-09-27 17:03:27 +0400 |
commit | 2070ab01d1cc9c7bddfbd7f649589ff482cd8edb (patch) | |
tree | 743c1fc1f8958c445d49354119c77194832cd37e /mysql-test/t/plugin_load_option.test | |
parent | 4da84123afe13d9382e689713dc283e65d2e082d (diff) | |
download | mariadb-git-2070ab01d1cc9c7bddfbd7f649589ff482cd8edb.tar.gz |
WL#5496 - Plugin LOAD_OPTION in INFORMATION_SCHEMA.PLUGINS
This patch implements I_S.PLUGINS.LOAD_OPTION column
as specified by WL#5496.
mysql-test/r/plugin_load_option.result:
A test case for WL#5496.
mysql-test/suite/funcs_1/r/is_columns_is.result:
Adjusted a test case according to WL#5496.
mysql-test/t/plugin_load_option.test:
A test case for WL#5496.
sql/sql_show.cc:
Added LOAD_OPTION column to I_S.PLUGINS.
Diffstat (limited to 'mysql-test/t/plugin_load_option.test')
-rw-r--r-- | mysql-test/t/plugin_load_option.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/plugin_load_option.test b/mysql-test/t/plugin_load_option.test index 604be30b561..e49b693b5be 100644 --- a/mysql-test/t/plugin_load_option.test +++ b/mysql-test/t/plugin_load_option.test @@ -3,3 +3,6 @@ --error ER_PLUGIN_IS_PERMANENT UNINSTALL PLUGIN example; + +SELECT PLUGIN_NAME, PLUGIN_STATUS, LOAD_OPTION FROM INFORMATION_SCHEMA.PLUGINS +WHERE PLUGIN_NAME IN ('MyISAM', 'EXAMPLE'); |