Rahul Kumar created CARBONDATA-2024:
---------------------------------------
Summary: After update empty folder is being created for compacted segments
Key: CARBONDATA-2024
URL:
https://issues.apache.org/jira/browse/CARBONDATA-2024 Project: CarbonData
Issue Type: Bug
Reporter: Rahul Kumar
Assignee: Rahul Kumar
Attachments: rr
Please follow the following steps to reproduce :
{code:java}
spark.sql("drop table if exists t")
spark.sql("create table t (c1 string, c2 string, c3 int, c4 string) stored by 'carbondata'")
spark.sql("insert into t select 'asd','sdf',1,'dfg'")
spark.sql("insert into t select 'asdf','sadf',2,'dafg'")
spark.sql("insert into t select 'asdq','sqdf',3,'dqfg'")
spark.sql("insert into t select 'aswd','sdfw',4,'dfgw'")
spark.sql("insert into t select 'aesd','sdef',5,'dfge'")
spark.sql("alter table t compact 'minor'")
spark.sql("clean files for table t")
spark.sql("update t set(c4) = ('yyy') where c3 = 3").show()
{code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)