ayushmantri created CARBONDATA-1260:
---------------------------------------
Summary: Show Partition for Range partition is not showing the correct range
Key: CARBONDATA-1260
URL:
https://issues.apache.org/jira/browse/CARBONDATA-1260 Project: CarbonData
Issue Type: Bug
Reporter: ayushmantri
Assignee: ayushmantri
Priority: Minor
create table test1( country string ) PARTITIONED BY (id int) stored by 'carbondata' TBLPROPERTIES('DICTIONARY_INCLUDE'='id','PARTITION_TYPE'='RANGE', 'RANGE_INFO'='10,15,20')"
Actual result
+----------+
|partition |
+----------+
|id=default|
|id<10 |
|10<=id<15 |
|15<=id<20 |
+----------+
Expected result
+----------+
|partition |
+----------+
||id<10 |
|10<=id<15 |
|15<=id<20
| id >=20 |
+----------+
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)