1DROP TEXT SEARCH DICTIONARPYo(s7t)greSQL 12.6 DocumentDaRtOiPonTEXT SEARCH DICTIONARY(7)
2
3
4
6 DROP_TEXT_SEARCH_DICTIONARY - remove a text search dictionary
7
9 DROP TEXT SEARCH DICTIONARY [ IF EXISTS ] name [ CASCADE | RESTRICT ]
10
12 DROP TEXT SEARCH DICTIONARY drops an existing text search dictionary.
13 To execute this command you must be the owner of the dictionary.
14
16 IF EXISTS
17 Do not throw an error if the text search dictionary does not exist.
18 A notice is issued in this case.
19
20 name
21 The name (optionally schema-qualified) of an existing text search
22 dictionary.
23
24 CASCADE
25 Automatically drop objects that depend on the text search
26 dictionary, and in turn all objects that depend on those objects
27 (see Section 5.14).
28
29 RESTRICT
30 Refuse to drop the text search dictionary if any objects depend on
31 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
40 configurations 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
51PostgreSQL 12.6 2021 DROP TEXT SEARCH DICTIONARY(7)