Prasad Mujumdar created HIVE-3563:
-------------------------------------
Summary: Drop database cascade fails when there are indexes on any
tables
Key: HIVE-3563
URL: https://issues.apache.org/jira/browse/HIVE-3563
Project: Hive
Issue Type: Bug
Components: Indexing, Metastore
Affects Versions: 0.9.0
Reporter: Prasad Mujumdar
Assignee: Prasad Mujumdar
Drop database cascade fails if any of the table has index.
create database db2;
use db2;
create table tab1 (id int, name string);
create index idx1 on table tab1(id) as 'COMPACT' with DEFERRED REBUILD;
drop database db2 cascade;
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira