プラグインを表示
SHOW PLUGINS
、各プラグインのステータスとバージョン情報を含む、TiDB にインストールされているすべてのプラグインを表示します。
注記:
この機能はTiDB サーバーレスクラスターでは使用できません。
概要
- 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 と完全に互換性があります。互換性の違いが見つかった場合は、 バグを報告 。