You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by "Ravindra Pesala (JIRA)" <ji...@apache.org> on 2019/03/08 01:44:00 UTC

[jira] [Resolved] (CARBONDATA-3301) Array column is giving null data in case of spark carbon file format

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

Ravindra Pesala resolved CARBONDATA-3301.
-----------------------------------------
       Resolution: Fixed
    Fix Version/s: 1.5.3

> Array<date> column is giving null data in case of spark carbon file format 
> ---------------------------------------------------------------------------
>
>                 Key: CARBONDATA-3301
>                 URL: https://issues.apache.org/jira/browse/CARBONDATA-3301
>             Project: CarbonData
>          Issue Type: Bug
>            Reporter: Akash R Nilugal
>            Priority: Major
>             Fix For: 1.5.3
>
>          Time Spent: 3.5h
>  Remaining Estimate: 0h
>
> Steps to reproduce
>  
>  # drop table if exists issue
>  # create table issue(name string, dob array<date>) using carbon
>  # insert into issue select 'abc',array('2017-11-11')
>  # select * from issue"
> output is 
> +----+------------+
> |name|dob |
> +----+------------+
> |abc |[]|
> +----+------------+
>  
> But parquet gives correct output
> +----+------------+
> |name|dob |
> +----+------------+
> |abc |[2017-11-11]|
> +----+------------+



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)