Skip to main content

SHOW PLUGINS

Description​

This statement is used to display installed plug-ins

Syntax​

SHOW PLUGINS

Return Value​

ColumnDescription
DescriptionCorresponding plug-in description
VersionPlug-in corresponding version number
JavaVersionCorresponding Java version number
ClassNameProgram class name
SoNameProgram shared object name
SourcesPlugin Source
StatusInstallation Status
PropertiesPlugin Properties

Permission Control​

The user executing this SQL command must have at least the following permissions:

PermissionsObjectNotes
ADMIN_PRIVThe entire clusterRequires administrative privileges for the entire cluster

Example​

  • Show installed plugins:

    SHOW PLUGINS;
    +-------------------------------+---------+-----------------------------------------------------------+---------+-------------+------------------------------------------------------------+--------+---------+-----------+------------+
    | Name | Type | Description | Version | JavaVersion | ClassName | SoName | Sources | Status | Properties |
    +-------------------------------+---------+-----------------------------------------------------------+---------+-------------+------------------------------------------------------------+--------+---------+-----------+------------+
    | __builtin_AuditLoader | AUDIT | builtin audit loader, to load audit log to internal table | 2.1.0 | 1.8.31 | org.apache.doris.plugin.audit.AuditLoader | NULL | Builtin | INSTALLED | {} |
    | __builtin_AuditLogBuilder | AUDIT | builtin audit logger | 0.12.0 | 1.8.31 | org.apache.doris.plugin.audit.AuditLogBuilder | NULL | Builtin | INSTALLED | {} |
    | __builtin_SqlDialectConverter | DIALECT | builtin sql dialect converter | 2.1.0 | 1.8.31 | org.apache.doris.plugin.dialect.HttpDialectConverterPlugin | NULL | Builtin | INSTALLED | {} |
    +-------------------------------+---------+-----------------------------------------------------------+---------+-------------+------------------------------------------------------------+--------+---------+-----------+------------+