プラグインを表示
SHOW PLUGINS
、各プラグインのステータスとバージョン情報を含む、TiDB にインストールされているすべてのプラグインを表示します。
注記:
この機能はTiDB Cloud Serverlessクラスターでは利用できません。
概要
- ShowPluginsStmt
ShowPluginsStmt ::=
"SHOW" "PLUGINS" ShowLikeOrWhere?
例
SHOW PLUGINS;
+-------+--------------+-------+-----------------------------+---------+---------+
| Name | Status | Type | Library | License | Version |
+-------+--------------+-------+-----------------------------+---------+---------+
| audit | Ready-enable | Audit | /tmp/tidb/plugin/audit-1.so | | 1 |
+-------+--------------+-------+-----------------------------+---------+---------+
1 row in set (0.000 sec)
SHOW PLUGINS LIKE 'a%';
+-------+--------------+-------+-----------------------------+---------+---------+
| Name | Status | Type | Library | License | Version |
+-------+--------------+-------+-----------------------------+---------+---------+
| audit | Ready-enable | Audit | /tmp/tidb/plugin/audit-1.so | | 1 |
+-------+--------------+-------+-----------------------------+---------+---------+
1 row in set (0.000 sec)
MySQLの互換性
TiDBのSHOW PLUGINS
文はMySQLと完全に互換性があります。互換性に違いがある場合は、 バグを報告する参照してください。