From 5e45211a64149b3c659b90ff2de6fa982a5a93ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 14:17:33 +0200 Subject: Adding upstream version 15.5. Signed-off-by: Daniel Baumann --- doc/src/sgml/html/sql-alterlanguage.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 doc/src/sgml/html/sql-alterlanguage.html (limited to 'doc/src/sgml/html/sql-alterlanguage.html') diff --git a/doc/src/sgml/html/sql-alterlanguage.html b/doc/src/sgml/html/sql-alterlanguage.html new file mode 100644 index 0000000..bbd6ead --- /dev/null +++ b/doc/src/sgml/html/sql-alterlanguage.html @@ -0,0 +1,19 @@ + +ALTER LANGUAGE

ALTER LANGUAGE

ALTER LANGUAGE — change the definition of a procedural language

Synopsis

+ALTER [ PROCEDURAL ] LANGUAGE name RENAME TO new_name
+ALTER [ PROCEDURAL ] LANGUAGE name OWNER TO { new_owner | CURRENT_ROLE | CURRENT_USER | SESSION_USER }
+

Description

+ ALTER LANGUAGE changes the definition of a + procedural language. The only functionality is to rename the language or + assign a new owner. You must be superuser or owner of the language to + use ALTER LANGUAGE. +

Parameters

name

+ Name of a language +

new_name

+ The new name of the language +

new_owner

+ The new owner of the language +

Compatibility

+ There is no ALTER LANGUAGE statement in the SQL + standard. +

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