From 6eb9c5a5657d1fe77b55cc261450f3538d35a94d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 14:19:15 +0200 Subject: Adding upstream version 13.4. Signed-off-by: Daniel Baumann --- doc/src/sgml/html/sql-droptransform.html | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 doc/src/sgml/html/sql-droptransform.html (limited to 'doc/src/sgml/html/sql-droptransform.html') diff --git a/doc/src/sgml/html/sql-droptransform.html b/doc/src/sgml/html/sql-droptransform.html new file mode 100644 index 0000000..27e2056 --- /dev/null +++ b/doc/src/sgml/html/sql-droptransform.html @@ -0,0 +1,31 @@ + +DROP TRANSFORM

DROP TRANSFORM

DROP TRANSFORM — remove a transform

Synopsis

+DROP TRANSFORM [ IF EXISTS ] FOR type_name LANGUAGE lang_name [ CASCADE | RESTRICT ]
+

Description

+ DROP TRANSFORM removes a previously defined transform. +

+ To be able to drop a transform, you must own the type and the language. + These are the same privileges that are required to create a transform. +

Parameters

IF EXISTS

+ Do not throw an error if the transform does not exist. A notice is issued + in this case. +

type_name

+ The name of the data type of the transform. +

lang_name

+ The name of the language of the transform. +

CASCADE

+ Automatically drop objects that depend on the transform, + and in turn all objects that depend on those objects + (see Section 5.14). +

RESTRICT

+ Refuse to drop the transform if any objects depend on it. This is the + default. +

Examples

+ To drop the transform for type hstore and language + plpythonu: +

+DROP TRANSFORM FOR hstore LANGUAGE plpythonu;
+

Compatibility

+ This form of DROP TRANSFORM is a + PostgreSQL extension. See CREATE TRANSFORM for details. +

\ No newline at end of file -- cgit v1.2.3