4 DROP TRANSFORM — remove a transform
8 DROP TRANSFORM [ IF EXISTS ] FOR type_name LANGUAGE lang_name [ CASCADE | RESTRI
13 DROP TRANSFORM removes a previously defined transform.
15 To be able to drop a transform, you must own the type and the language.
16 These are the same privileges that are required to create a transform.
21 Do not throw an error if the transform does not exist. A notice
22 is issued in this case.
25 The name of the data type of the transform.
28 The name of the language of the transform.
31 Automatically drop objects that depend on the transform, and in
32 turn all objects that depend on those objects (see
36 Refuse to drop the transform if any objects depend on it. This
41 To drop the transform for type hstore and language plpython3u:
42 DROP TRANSFORM FOR hstore LANGUAGE plpython3u;
46 This form of DROP TRANSFORM is a PostgreSQL extension. See CREATE
47 TRANSFORM for details.