Removes a text search parser.
DROP TEXT SEARCH PARSER [ IF EXISTS ] <name> [ CASCADE | RESTRICT ]
DROP TEXT SEARCH PARSER
drops an existing text search parser. You must be a superuser to use this command.
Remove the text search parser my_parser
:
DROP TEXT SEARCH PARSER my_parser;
This command will not succeed if there are any existing text search configurations that use the parser. Add CASCADE
to drop such configurations along with the parser.
There is no DROP TEXT SEARCH PARSER
statement in the SQL standard.
ALTER TEXT SEARCH PARSER, CREATE TEXT SEARCH PARSER
Parent topic: SQL Commands