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
| Empty lines |`a,b\n\nc`| Empty lines may be a result of a misconfiguration or an error in the data. The parser should fail-fast to avoid cascading errors. |
60
60
| Inconsistent row lengths |`a,b\nc,d,e`| Fail-fast on inconsistent row lengths to ensure data integrity. Each row should have the same number of fields. |
61
-
| Mixed styles |`'a',"b"` or `a,b\n1;2`| Fail-fast on mixed character styles to ensure consistency in parsing. The parser should not attempt to guess the style. |
62
61
| Backslash escaping |`a\,b` → `["a,b"]` or `a,"\"",c` → `["a,\"", "c"]`| Backslash escaping is currently unsupported as it is not part of the RFC 4180 standard and could lead to ambiguity. |
63
62
| Fields with comment-style trailing text |`a,b # note`| Trailing comments are parsed verbatim and as part of the field. This should be avoided to prevent ambiguity. |
0 commit comments