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 TEMPLATE drops an existing text search template. You must be a superuser to use this command.
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 template does not exist. A notice is issued in this case.
The name (optionally schema-qualified) of an existing text search template.
Automatically drop objects that depend on the text search template.
Refuse to drop the text search template if any objects depend on it. This is the default.
Remove the text search template thesaurus:
DROP TEXT SEARCH TEMPLATE thesaurus;
This command will not succeed if there are any existing text search dictionaries that use the template. Add CASCADE to drop such dictionaries along with the template.