I tried to drop an acid table in HIVE and it throws an error like this:
Unable to get table: java.lang.Exception: ErrorCode: InternalError, Message:Not enable acid table
DDL:
create table `test`( `id` string, `c1` string )
PARTITIONED BY (created_date date) CLUSTERED BY(id) INTO 6 BUCKETS
STORED AS ORC TBLPROPERTIES (
'orc.compress'='ZLIB',
'transactional'='true' );
So how can I drop this table?
