DROP TEXT SEARCH CONFIGURATION deletes an existing text search configuration.
To run the DROP TEXT SEARCH CONFIGURATION command, you must be the owner of the text search configuration.
1 | DROP TEXT SEARCH CONFIGURATION [ IF EXISTS ] name [ CASCADE | RESTRICT ]; |
Sends a notice instead of an error if the specified text search configuration does not exist.
Specifies the name (optionally schema-qualified) of a text search configuration to be deleted.
Automatically deletes objects that depend on the text search configuration to be deleted.
Refuses to delete the text search configuration if any objects depend on it. This is the default.
Delete the text search configuration ngram1.
1 | DROP TEXT SEARCH CONFIGURATION ngram1; |