-
Notifications
You must be signed in to change notification settings - Fork 142
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
Multithreaded parsing error should be warning #1095
Comments
cc: @Liozou |
Thank you for reporting this! Would it be possible for you to share the offending CSV? I put this as an error precisely to get this kind CSVs reported here. There should indeed be no apparent issue/crash since a fallback was implemented, but it signals a possible mistake in the code and in any case it causes a severe performance drop for CSV parsing (since it falls back to a single thread). |
sure, here is an example of such a CSV. these are results from sports betting contests. let me know if it helps! |
The root issue is that starting from line 30 ( |
cool! thank you for the quick responses |
btw this is not fixed for me :) maybe it is because I set |
I think this is just because the latest released version of CSV.jl does not include the bugfix. You can try to |
┌ Error: Multi-threaded parsing failed (are there newlines inside quoted fields?), falling back to single-threaded parsing
This still returns a parsed CSV file just fine and doesn't crash the program. I think this should display as a warning and not an error
The text was updated successfully, but these errors were encountered: