Removes a transform.
DROP TRANSFORM [IF EXISTS] FOR <type_name> LANGUAGE <lang_name> [CASCADE | RESTRICT]
DROP TRANSFORM
removes a previously defined transform.
To drop a transform, you must own the type and the language. These are the same privileges that are required to create a transform.
To drop the transform for type hstore
and language plpython3u
:
DROP TRANSFORM FOR hstore LANGUAGE plpython3u;
This form of DROP TRANSFORM
is a Greenplum Database extension. See CREATE TRANSFORM for details.
Parent topic: SQL Commands