From 311bcfc6b3acdd6fd152798c7f287ddf74fa2a98 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 16 Apr 2024 21:46:48 +0200 Subject: Adding upstream version 15.4. Signed-off-by: Daniel Baumann --- doc/src/sgml/html/sql-dropcollation.html | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 doc/src/sgml/html/sql-dropcollation.html (limited to 'doc/src/sgml/html/sql-dropcollation.html') diff --git a/doc/src/sgml/html/sql-dropcollation.html b/doc/src/sgml/html/sql-dropcollation.html new file mode 100644 index 0000000..bec097f --- /dev/null +++ b/doc/src/sgml/html/sql-dropcollation.html @@ -0,0 +1,28 @@ + +DROP COLLATION

DROP COLLATION

DROP COLLATION — remove a collation

Synopsis

+DROP COLLATION [ IF EXISTS ] name [ CASCADE | RESTRICT ]
+

Description

+ DROP COLLATION removes a previously defined collation. + To be able to drop a collation, you must own the collation. +

Parameters

IF EXISTS

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

name

+ The name of the collation. The collation name can be + schema-qualified. +

CASCADE

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

RESTRICT

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

Examples

+ To drop the collation named german: +

+DROP COLLATION german;
+

Compatibility

+ The DROP COLLATION command conforms to the + SQL standard, apart from the IF + EXISTS option, which is a PostgreSQL extension. +

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