You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 22, 2019. It is now read-only.
Currently, if a CSV line is parsed that has fewer columns than the header specified, the last few columns are just set to null, and it continues without error.
Currently, if a CSV line is parsed that has fewer columns than the header specified, the last few columns are just set to
null
, and it continues without error.Request is to add a new feature like
CsvParser.Feature.REQUIRE_ALL_COLUMNS
that will result in an exception if the number of fields for a record/row is less than the expected number.see http://stackoverflow.com/questions/30775073/jackson-csv-missing-columns/34823728
The text was updated successfully, but these errors were encountered: