Index of /postgresql-8.2.5/postgres/sql-dropopclass.html |
PostgreSQL 8.2.5 Documentation | ||||
---|---|---|---|---|
Prev | Fast Backward | Fast Forward | Next |
DROP OPERATOR CLASS drops an existing operator class. To execute this command you must be the owner of the operator class.
Do not throw an error if the operator class does not exist. A notice is issued in this case.
The name (optionally schema-qualified) of an existing operator class.
The name of the index access method the operator class is for.
Automatically drop objects that depend on the operator class.
Refuse to drop the operator class if any objects depend on it. This is the default.
Remove the B-tree operator class widget_ops:
DROP OPERATOR CLASS widget_ops USING btree;
This command will not succeed if there are any existing indexes that use the operator class. Add CASCADE to drop such indexes along with the operator class.
HIVE: All information for read only. Please respect copyright! |