2 DROP TEXT SEARCH TEMPLATE
4 DROP TEXT SEARCH TEMPLATE — remove a text search template
8 DROP TEXT SEARCH TEMPLATE [ IF EXISTS ] name [ CASCADE | RESTRICT ]
12 DROP TEXT SEARCH TEMPLATE drops an existing text search template. You
13 must be a superuser to use this command.
18 Do not throw an error if the text search template 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 template, and in turn all objects that depend on those objects
31 Refuse to drop the text search template if any objects depend on
32 it. This is the default.
36 Remove the text search template thesaurus:
37 DROP TEXT SEARCH TEMPLATE thesaurus;
39 This command will not succeed if there are any existing text search
40 dictionaries that use the template. Add CASCADE to drop such
41 dictionaries along with the template.
45 There is no DROP TEXT SEARCH TEMPLATE statement in the SQL standard.
49 ALTER TEXT SEARCH TEMPLATE, CREATE TEXT SEARCH TEMPLATE