2 DROP TEXT SEARCH DICTIONARY
4 DROP TEXT SEARCH DICTIONARY — remove a text search dictionary
8 DROP TEXT SEARCH DICTIONARY [ IF EXISTS ] name [ CASCADE | RESTRICT ]
12 DROP TEXT SEARCH DICTIONARY drops an existing text search dictionary.
13 To execute this command you must be the owner of the dictionary.
18 Do not throw an error if the text search dictionary does not
19 exist. A notice is issued in this case.
22 The name (optionally schema-qualified) of an existing text
26 Automatically drop objects that depend on the text search
27 dictionary, and in turn all objects that depend on those objects
31 Refuse to drop the text search dictionary if any objects depend
32 on it. This is the default.
36 Remove the text search dictionary english:
37 DROP TEXT SEARCH DICTIONARY english;
39 This command will not succeed if there are any existing text search
40 configurations that use the dictionary. Add CASCADE to drop such
41 configurations along with the dictionary.
45 There is no DROP TEXT SEARCH DICTIONARY statement in the SQL standard.
49 ALTER TEXT SEARCH DICTIONARY, CREATE TEXT SEARCH DICTIONARY