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

DROP TEXT SEARCH CONFIGURATION

DROP TEXT SEARCH CONFIGURATION — remove a text search configuration

Synopsis

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

Description

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

Parameters

IF EXISTS

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

name

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

CASCADE

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

RESTRICT

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

Examples

+ Remove the text search configuration my_english: + +

+DROP TEXT SEARCH CONFIGURATION my_english;
+

+ + This command will not succeed if there are any existing indexes + that reference the configuration in to_tsvector calls. + Add CASCADE to + drop such indexes along with the text search configuration. +

Compatibility

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

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