You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by "ayushmantri (JIRA)" <ji...@apache.org> on 2017/07/04 07:42:00 UTC

[jira] [Created] (CARBONDATA-1260) Show Partition for Range partition is not showing the correct range

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)