2 DROP FOREIGN DATA WRAPPER
4 DROP FOREIGN DATA WRAPPER — remove a foreign-data wrapper
8 DROP FOREIGN DATA WRAPPER [ IF EXISTS ] name [, ...] [ CASCADE | RESTRICT ]
12 DROP FOREIGN DATA WRAPPER removes an existing foreign-data wrapper. To
13 execute this command, the current user must be the owner of the
19 Do not throw an error if the foreign-data wrapper does not
20 exist. A notice is issued in this case.
23 The name of an existing foreign-data wrapper.
26 Automatically drop objects that depend on the foreign-data
27 wrapper (such as foreign tables and servers), and in turn all
28 objects that depend on those objects (see Section 5.15).
31 Refuse to drop the foreign-data wrapper if any objects depend on
32 it. This is the default.
36 Drop the foreign-data wrapper dbi:
37 DROP FOREIGN DATA WRAPPER dbi;
41 DROP FOREIGN DATA WRAPPER conforms to ISO/IEC 9075-9 (SQL/MED). The IF
42 EXISTS clause is a PostgreSQL extension.
46 CREATE FOREIGN DATA WRAPPER, ALTER FOREIGN DATA WRAPPER