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-droptsdictionary.html | 34 +++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 doc/src/sgml/html/sql-droptsdictionary.html (limited to 'doc/src/sgml/html/sql-droptsdictionary.html') diff --git a/doc/src/sgml/html/sql-droptsdictionary.html b/doc/src/sgml/html/sql-droptsdictionary.html new file mode 100644 index 0000000..60ecb19 --- /dev/null +++ b/doc/src/sgml/html/sql-droptsdictionary.html @@ -0,0 +1,34 @@ + +DROP TEXT SEARCH DICTIONARY

DROP TEXT SEARCH DICTIONARY

DROP TEXT SEARCH DICTIONARY — remove a text search dictionary

Synopsis

+DROP TEXT SEARCH DICTIONARY [ IF EXISTS ] name [ CASCADE | RESTRICT ]
+

Description

+ DROP TEXT SEARCH DICTIONARY drops an existing text + search dictionary. To execute this command you must be the owner of the + dictionary. +

Parameters

IF EXISTS

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

name

+ The name (optionally schema-qualified) of an existing text search + dictionary. +

CASCADE

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

RESTRICT

+ Refuse to drop the text search dictionary if any objects depend on it. + This is the default. +

Examples

+ Remove the text search dictionary english: + +

+DROP TEXT SEARCH DICTIONARY english;
+

+ + This command will not succeed if there are any existing text search + configurations that use the dictionary. Add CASCADE to + drop such configurations along with the dictionary. +

Compatibility

+ There is no DROP TEXT SEARCH DICTIONARY statement in the + SQL standard. +

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