Files
doris/docs/en/sql-reference/sql-statements/Administration/UNINSTALL PLUGIN.md
Mingyu Chen 0db9194dc0 [Doc] Fix wrong doc name (#4477)
Co-authored-by: morningman <chenmingyu@baidu.com>
2020-08-28 11:56:59 +08:00

1.2 KiB

title, language
title language
UNINSTALL PLUGIN en

UNINSTALL PLUGIN

description

To uninstall a plugin.

Syntax

    UNINSTALL PLUGIN plugin_name;
    
    plugin_name can be found by `SHOW PLUGINS;`.
    
    Can only uninstall non-builtin plugins.

example

1. Uninstall a plugin:

    UNINSTALL PLUGIN auditdemo;

keyword

UNINSTALL,PLUGIN