When I try to update or delete in the hive table, I get the error
FAILED: SemanticException [Error 10294]: Attempt to do update or delete using transaction manager that does not support these operations.
I have created a table as
create table testTableNew(id int ,name string ) clustered by (id) into
2 buckets stored as orc TBLPROPERTIES('transactional'='true');
I am using cloudera. Am I missing something? I am new to hive and need some help for this.