-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Improve candidate error message and relax constraint of rfc_4180 = false on quotes #15371
base: main
Are you sure you want to change the base?
Conversation
I've added a few more tests regarding unescaped quotes with escapes. It is not possible to have full relaxation of unescaped quotes. This is due to it being impossible with the state machine alone to resolve the end of a value. To give an example, let's inspect the following line. The CSV file has two columns, For example:
In one pass, it is impossible to assert whether this line has 2 or 3 columns, since we have a quote I think this can only be supported with the auto-correction idea, where we can force the line to match our schema, but that is outside the scope of this PR. |
This PR allows us to read the
hits.csv
file without setting any options.