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
First thanks for this wonderful library. It's very fast comparing to other csv parsers.
The issue is when the reader parses the following line (note that this is the last line of the file), column size will be 4. The parser failed to find the trailing missing column:
ABC,123,123,123,\0
If there's an additional line, column size will be 5 which is correct:
ABC,123,123,123,\n\0
The text was updated successfully, but these errors were encountered:
First thanks for this wonderful library. It's very fast comparing to other csv parsers.
The issue is when the reader parses the following line (note that this is the last line of the file), column size will be 4. The parser failed to find the trailing missing column:
ABC,123,123,123,\0
If there's an additional line, column size will be 5 which is correct:
ABC,123,123,123,\n\0
The text was updated successfully, but these errors were encountered: