We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A CSV with duplicate column names...
Home School, Allocation, Joint School, Allocation
...modelled as: (String, Double, Option[String], Option[Double]) will fail to parse a valid row such as:
(String, Double, Option[String], Option[Double])
Foo, 1,,
...reporting that "Allocation" is not a number. There's some confusion over "Allocation" being required, but optional in the second usage.
Not sure what to do about this. Possibly warn if there are duplicate columns? or support duplicate columns.
@d6y needs to provide a test case to demonstrate this is actually an issue and not a figment of his imagination.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A CSV with duplicate column names...
...modelled as:
(String, Double, Option[String], Option[Double])
will fail to parse a valid row such as:...reporting that "Allocation" is not a number. There's some confusion over "Allocation" being required, but optional in the second usage.
Not sure what to do about this. Possibly warn if there are duplicate columns? or support duplicate columns.
@d6y needs to provide a test case to demonstrate this is actually an issue and not a figment of his imagination.
The text was updated successfully, but these errors were encountered: