—
NAME
DROP_TEXT_SEARCH_PARSER - remove a text search parser
SYNOPSIS
bash
DROP TEXT SEARCH PARSER [ IF EXISTS ] \nname\n [ CASCADE | RESTRICT ]DESCRIPTION
DROP TEXT SEARCH PARSER drops an existing text search parser. You must be a superuser to use this command.
PARAMETERS
IF EXISTS
name
CASCADE
RESTRICT
EXAMPLES
Remove the text search parser my_parser:
bash
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.
COMPATIBILITY
There is no DROP TEXT SEARCH PARSER statement in the SQL standard.
SEE ALSO
ALTER TEXT SEARCH PARSER (ALTER_TEXT_SEARCH_PARSER(7)), CREATE TEXT SEARCH PARSER (CREATE_TEXT_SEARCH_PARSER(7))