Note: The following description applies both to Postgres-XC and PostgreSQL if not described explicitly. You can read PostgreSQL as Postgres-XC except for version number, which is specific to each product.
DROP TEXT SEARCH CONFIGURATION drops an existing text search configuration. To execute this command you must be the owner of the configuration.
Note: The following description applies both to Postgres-XC and PostgreSQL if not described explicitly. You can read PostgreSQL as Postgres-XC except for version number, which is specific to each product.
Do not throw an error if the text search configuration does not exist. A notice is issued in this case.
The name (optionally schema-qualified) of an existing text search configuration.
Automatically drop objects that depend on the text search configuration.
Refuse to drop the text search configuration if any objects depend on it. This is the default.
Remove the text search configuration my_english:
DROP TEXT SEARCH CONFIGURATION my_english;
This command will not succeed if there are any existing indexes
that reference the configuration in to_tsvector
calls.
Add CASCADE to
drop such indexes along with the text search configuration.