2 DROP TEXT SEARCH CONFIGURATION
4 DROP TEXT SEARCH CONFIGURATION — remove a text search configuration
8 DROP TEXT SEARCH CONFIGURATION [ IF EXISTS ] name [ CASCADE | RESTRICT ]
12 DROP TEXT SEARCH CONFIGURATION drops an existing text search
13 configuration. To execute this command you must be the owner of the
19 Do not throw an error if the text search configuration does not
20 exist. A notice is issued in this case.
23 The name (optionally schema-qualified) of an existing text
27 Automatically drop objects that depend on the text search
28 configuration, and in turn all objects that depend on those
29 objects (see Section 5.15).
32 Refuse to drop the text search configuration if any objects
33 depend on it. This is the default.
37 Remove the text search configuration my_english:
38 DROP TEXT SEARCH CONFIGURATION my_english;
40 This command will not succeed if there are any existing indexes that
41 reference the configuration in to_tsvector calls. Add CASCADE to drop
42 such indexes along with the text search configuration.
46 There is no DROP TEXT SEARCH CONFIGURATION statement in the SQL
51 ALTER TEXT SEARCH CONFIGURATION, CREATE TEXT SEARCH CONFIGURATION