[
https://issues.apache.org/jira/browse/CARBONDATA-1623?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Weizhong reassigned CARBONDATA-1623:
------------------------------------
Assignee: Weizhong
> Ignore empty line when load from csv
> ------------------------------------
>
> Key: CARBONDATA-1623
> URL:
https://issues.apache.org/jira/browse/CARBONDATA-1623> Project: CarbonData
> Issue Type: Improvement
> Components: data-load
> Reporter: Weizhong
> Assignee: Weizhong
> Priority: Minor
>
> if csv have many empty line, then will store null for empty line on CarbonData, but this is unused and waste space.
> for example:
> in csv the data is
> ------------------
> 1,a
> // emptyline
> 2,b
> // emptyline
> ------------------
> store to CarbonData is
> ------------------
> 1,a
> null,null
> 2,b
> null,null
> ------------------
> after change, then it will be
> ------------------
> 1,a
> 2,b
> ------------------
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)