top of page
CerebroSQL

UNINSTALL PLUGIN

База данных: MySQL

68747470733a2f2f7374796c65732e7265646469746d656469612e636f6d2f74355f32716d366b2f7374796c65

Syntax:
UNINSTALL PLUGIN plugin_name

This statement removes an installed server plugin. UNINSTALL PLUGIN is
the complement of INSTALL PLUGIN. It requires the DELETE privilege for
the mysql.plugin system table because it removes the row from that
table that registers the plugin.

plugin_name must be the name of some plugin that is listed in the
mysql.plugin table. The server executes the plugin's deinitialization
function and removes the row for the plugin from the mysql.plugin
system table, so that subsequent server restarts will not load and
initialize the plugin. UNINSTALL PLUGIN does not remove the plugin's
shared library file.

URL: https://dev.mysql.com/doc/refman/8.0/en/uninstall-plugin.html

Example

bottom of page