DROP NETWORK POLICY (Cloud)

Available for Materialize Cloud only

DROP NETWORK POLICY removes an existing network policy from Materialize. Network policies are part of Materialize’s framework for access control.

To alter the rules in a network policy, use the ALTER NETWORK POLICY command.

Syntax

DROP NETWORK POLICY [IF EXISTS] <name>;
Syntax element Description
IF EXISTS Optional. If specified, do not return an error if the specified network policy does not exist.
<name> The network policy you want to drop. For available network policies, see SHOW NETWORK POLICIES.

Privileges

The privileges required to execute this statement are:

  • CREATENETWORKPOLICY privileges on the system.
Back to top ↑