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