Krisztian Kasa created HIVE-23094:
-------------------------------------
Summary: Implement Explain CBO of Update and Delete statements
Key: HIVE-23094
URL: https://issues.apache.org/jira/browse/HIVE-23094
Project: Hive
Issue Type: Improvement
Components: CBO
Reporter: Krisztian Kasa
Assignee: Krisztian Kasa
{code}
set hive.support.concurrency=true;
set hive.txn.manager=org.apache.hadoop.hive.ql.lockmgr.DbTxnManager;
create table acidtlb(a int, b int) clustered by (a) into 2 buckets stored as
orc TBLPROPERTIES ('transactional'='true');
explain cbo
update acidtlb set b=777;
{code}
doesn't print CBO plan.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)