DROP NETWORK POLICY

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
Field Use
IF EXISTS 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 ↑