MySQL :: MySQL 5.7 Reference Manual :: 13.7.5.25 SHOW PLUGINS Statement (original) (raw)

13.7.5.25 SHOW PLUGINS Statement

SHOW PLUGINS

SHOW PLUGINS displays information about server plugins.

Example of SHOW PLUGINS output:

mysql> SHOW PLUGINS\G
*************************** 1. row ***************************
   Name: binlog
 Status: ACTIVE
   Type: STORAGE ENGINE
Library: NULL
License: GPL
*************************** 2. row ***************************
   Name: CSV
 Status: ACTIVE
   Type: STORAGE ENGINE
Library: NULL
License: GPL
*************************** 3. row ***************************
   Name: MEMORY
 Status: ACTIVE
   Type: STORAGE ENGINE
Library: NULL
License: GPL
*************************** 4. row ***************************
   Name: MyISAM
 Status: ACTIVE
   Type: STORAGE ENGINE
Library: NULL
License: GPL
...

SHOW PLUGINS output has these columns:

For plugins installed with INSTALL PLUGIN, the Name andLibrary values are also registered in themysql.plugin system table.

For information about plugin data structures that form the basis of the information displayed by SHOW PLUGINS, see The MySQL Plugin API.

Plugin information is also available from theINFORMATION_SCHEMA .PLUGINS table. SeeSection 24.3.17, “The INFORMATION_SCHEMA PLUGINS Table”.