When a catalog is no longer needed, you can use the DROP CATALOG [IF EXISTS] external_catalog_name; statement to drop it.
If IF EXISTS is specified, no error is reported even when the catalog to be dropped does not exist. If IF EXISTS is not specified, an error is reported when the catalog does not exist.
Example:
obclient> DROP CATALOG IF EXISTS test_odps_catalog;
