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/05 06:30:00 UTC

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

     [ https://issues.apache.org/jira/browse/CARBONDATA-1260?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

ayushmantri updated CARBONDATA-1260:
------------------------------------
    Description: 
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 |
+----------+
|Default |
|id<10    |
|10<=id<15 |
|15<=id<20 |
+----------+

  was:
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  |
+----------+

     Issue Type: Improvement  (was: Bug)

> 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: Improvement
>            Reporter: ayushmantri
>            Assignee: ayushmantri
>            Priority: Minor
>          Time Spent: 1h
>  Remaining Estimate: 0h
>
> 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 |
> +----------+
> |Default |
> |id<10    |
> |10<=id<15 |
> |15<=id<20 |
> +----------+



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)