DROP PIPE¶

Removes the specified pipe from the current/specified schema.

See also:

CREATE PIPE , ALTER PIPE , SHOW PIPES , DESCRIBE PIPE

Syntax¶

DROP PIPE [ IF EXISTS ] <name>
Copy

Parameters¶

name

Specifies the identifier for the pipe to drop. If the identifier contains spaces or special characters, the entire string must be enclosed in double quotes. Identifiers enclosed in double quotes are also case-sensitive.

Usage notes¶

  • Dropped pipes cannot be recovered; they must be recreated.

Examples¶

DROP PIPE mypipe;

+------------------------------+
| status                       |
|------------------------------|
| MYPIPE successfully dropped. |
+------------------------------+
Copy