UNINSTALL SONAME
Uninstall all plugins loaded from a specific library. This statement removes every plugin associated with the library file and unloads the library itself.
Syntax
UNINSTALL SONAME [IF EXISTS] 'plugin_library'Description
IF EXISTS
Examples
UNINSTALL SONAME 'ha_xtradb';UNINSTALL SONAME IF EXISTS 'ha_example';
Query OK, 0 rows affected (0.099 sec)
UNINSTALL SONAME IF EXISTS 'ha_example';
Query OK, 0 rows affected, 1 warning (0.000 sec)
SHOW WARNINGS;
+-------+------+-------------------------------------+
| Level | Code | Message |
+-------+------+-------------------------------------+
| Note | 1305 | SONAME ha_example.so does not exist |
+-------+------+-------------------------------------+See Also
Last updated
Was this helpful?

