1DROP TEXT SEARCH DICTIONARY(7) SQL Commands DROP TEXT SEARCH DICTIONARY(7)
2
3
4
6 DROP TEXT SEARCH DICTIONARY - remove a text search dictionary
7
8
10 DROP TEXT SEARCH DICTIONARY [ IF EXISTS ] name [ CASCADE | RESTRICT ]
11
12
14 DROP TEXT SEARCH DICTIONARY drops an existing text search dictionary.
15 To execute this command you must be the owner of the dictionary.
16
18 IF EXISTS
19 Do not throw an error if the text search dictionary does not
20 exist. A notice is issued in this case.
21
22 name The name (optionally schema-qualified) of an existing text
23 search dictionary.
24
25 CASCADE
26 Automatically drop objects that depend on the text search dic‐
27 tionary.
28
29 RESTRICT
30 Refuse to drop the text search dictionary if any objects depend
31 on it. This is the default.
32
34 Remove the text search dictionary english:
35
36 DROP TEXT SEARCH DICTIONARY english;
37
38 This command will not succeed if there are any existing text search
39 configurations that use the dictionary. Add CASCADE to drop such con‐
40 figurations along with the dictionary.
41
43 There is no DROP TEXT SEARCH DICTIONARY statement in the SQL standard.
44
46 ALTER TEXT SEARCH DICTIONARY [alter_text_search_dictionary(7)], CREATE
47 TEXT SEARCH DICTIONARY [create_text_search_dictionary(7)]
48
49
50
51SQL - Language Statements 2014-02-17 DROP TEXT SEARCH DICTIONARY(7)