diff options
Diffstat (limited to 'mysql-test/t/handlersocket.test')
-rw-r--r-- | mysql-test/t/handlersocket.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/t/handlersocket.test b/mysql-test/t/handlersocket.test new file mode 100644 index 00000000000..6a7b65797c5 --- /dev/null +++ b/mysql-test/t/handlersocket.test @@ -0,0 +1,10 @@ +--source include/not_windows_embedded.inc + +if (`select length('$HANDLERSOCKET_SO') = 0`) { + skip handlersocket plugin is not built; +} + +install plugin handlersocket soname 'handlersocket.so'; +--query_vertical select plugin_name, plugin_version, plugin_status, plugin_type, plugin_library, plugin_library_version, plugin_author, plugin_description plugin_license, plugin_maturity, plugin_auth_version from information_schema.plugins where plugin_name = 'handlersocket' +uninstall plugin handlersocket; + |