To remove a catalog that is no longer needed, use the DROP CATALOG [IF EXISTS] external_catalog_name; statement.
If IF EXISTS is specified, no error is reported even if the catalog does not exist. If IF EXISTS is omitted, an error is reported when the catalog does not exist.
Example:
obclient> DROP CATALOG IF EXISTS test_odps_catalog;
