SHOW PLUGINS SONAME

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

Syntax:

SHOW PLUGINS SONAME { library | LIKE 'pattern' | WHERE expr };

Description:

SHOW PLUGINS SONAME displays information about compiled-in and all server plugins in the @@plugin_dir directory, including not installed ones.

Examples:

MariaDB [(none)]> show plugins soname 'ha_example.so';
+----------+---------------+----------------+---------------+---------+
| Name     | Status        | Type           | Library       | License |
+----------+---------------+----------------+---------------+---------+
| EXAMPLE  | NOT INSTALLED | STORAGE ENGINE | ha_example.so | GPL     |
| UNUSABLE | NOT INSTALLED | DAEMON         | ha_example.so | GPL     |
+----------+---------------+----------------+---------------+---------+
2 rows in set (0.00 sec)

There is also a corresponding INFORMATION_SCHEMA table, called ALL_PLUGINS.

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.