1DROP TEXT SEARCH DICTIONAPRoYs(t7g)reSQL 9.2.24 DocumenDtRaOtPioTnEXT 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.
27
28 RESTRICT
29 Refuse to drop the text search dictionary if any objects depend on
30 it. This is the default.
31
33 Remove the text search dictionary english:
34
35 DROP TEXT SEARCH DICTIONARY english;
36
37 This command will not succeed if there are any existing text search
38 configurations that use the dictionary. Add CASCADE to drop such
39 configurations along with the dictionary.
40
42 There is no DROP TEXT SEARCH DICTIONARY statement in the SQL standard.
43
45 ALTER TEXT SEARCH DICTIONARY (ALTER_TEXT_SEARCH_DICTIONARY(7)), CREATE
46 TEXT SEARCH DICTIONARY (CREATE_TEXT_SEARCH_DICTIONARY(7))
47
48
49
50PostgreSQL 9.2.24 2017-11-06 DROP TEXT SEARCH DICTIONARY(7)