QiangCai created CARBONDATA-1136: ------------------------------------ Summary: After compaction, the select query is not showing data Key: CARBONDATA-1136 URL: https://issues.apache.org/jira/browse/CARBONDATA-1136 Project: CarbonData Issue Type: Bug Reporter: QiangCai Assignee: QiangCai
After compaction, the select query is not showing data create table part_major_compact(a String, b int) partitioned by (c int) stored by 'carbondata' tblproperties('PARTITION_TYPE'='LIST','LIST_INFO'='1,2') insert into part_major_compact select 'a', 2, 3 from originTable limit 1 insert into part_major_compact select 'b', 3, 4 from originTable limit 1 insert into part_major_compact select 'c', 4, 5 from originTable limit 1 insert into part_major_compact select 'd', 1, 2 from originTable limit 1 alter table part_major_compact compact 'major' select * from part_major_compact where c = 4 -- This message was sent by Atlassian JIRA (v6.3.15#6346)