Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
1.3.0
-
None
-
None
Description
On applying hash partition on date column, all the data by default goes to Default partition.
create table if not exists date_hash(col_A String) partitioned by (col_F Timestamp) stored by 'carbondata' tblproperties('partition_type'='hash','num_partitions'='5');
insert into table date_hash select 'ayushi','2016-02-02';
insert into table date_hash select 'ayushi','2016-02-05';
insert into table date_hash select 'ayushi','2016-01-05';