-
Notifications
You must be signed in to change notification settings - Fork 112
3288 csv file empty headers #3289
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
…nted conversions and exceptions
… place, avoid duplication)
|
@karlocehulic19 let's connect to give you guidelines for this one. It has failing integration test which should PASS once implementation properly process sample CSV file. |
@ivicac apache csv requires: I know that for jackson libs we relie to Spring BOM defined versions What would be th case for apache?? Btw. according to the plan:
|
Ivica I added CSV sample which fails.
Added test tests number of detected columns - it fails probably because either our wrong configuration or issue in apache library
Header line which cant be processed
Header 1;Header 2;Header 3;;Header 5;;Header 7
Apache parser interprets first ;; as empty header, but it swalows second ;; which causes problem in later output processing
We can check this together before I fix it. (My plan is to provide own parser for header if apache csv fails on this)