mysql.plugin Table

You are viewing an old version of this article. View the current version here.

The mysql.plugin table contains a list of plugins that have been loaded with INSTALL SONAME, INSTALL PLUGIN or the mysql_plugin utility. It does not contain information about built-in plugins, or plugins loaded with the --plugin-load option. I

It contains the following fields:

FieldTypeNullKeyDefaultDescription
namevarchar(64)NOPRIPlugin name.
dlvarchar(128)NOName of the plugin library.

Example

SELECT * FROM mysql.plugin;
+---------------------------+------------------------+
| name                      | dl                     |
+---------------------------+------------------------+
| spider                    | ha_spider.so           |
| spider_alloc_mem          | ha_spider.so           |
| METADATA_LOCK_INFO        | metadata_lock_info.so  |
| OQGRAPH                   | ha_oqgraph.so          |
| cassandra                 | ha_cassandra.so        |
| QUERY_RESPONSE_TIME       | query_response_time.so |
| QUERY_RESPONSE_TIME_AUDIT | query_response_time.so |
| LOCALES                   | locales.so             |
| sequence                  | ha_sequence.so         |
+---------------------------+------------------------+

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.