[jira] [Created] (CARBONDATA-1620) Ignore empty line when load from csv

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[jira] [Created] (CARBONDATA-1620) Ignore empty line when load from csv

Akash R Nilugal (Jira)
Weizhong created CARBONDATA-1620:
------------------------------------

             Summary: Ignore empty line when load from csv
                 Key: CARBONDATA-1620
                 URL: https://issues.apache.org/jira/browse/CARBONDATA-1620
             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)