Description
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;
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;