Weizhong created CARBONDATA-1623:
------------------------------------
Summary: 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
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)