DROP STREAM

Drop a stream with the given name. If IF EXISTS is present, the statement won’t fail if the stream does not exist.

Synopsis

  1. DROP STREAM stream_name [ IF EXISTS ];

Notes

  • stream_name is a valid identifier.
  • IF EXISTS annotation is optional.

Examples

  1. DROP STREAM foo;
  2. DROP STREAM foo IF EXISTS;