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 COLLATION removes a previously defined collation. To be able to drop a collation, you must own the collation.
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 collation does not exist. A notice is issued in this case.
The name of the collation. The collation name can be schema-qualified.
Automatically drop objects that depend on the collation.
Refuse to drop the collation if any objects depend on it. This is the default.
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.
The DROP COLLATION command conforms to the SQL standard, apart from the IF EXISTS option, which is a PostgreSQL extension.