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
I try read Denver Crime Data example file crime.csv,the first line get wrong col number.The header has 19 cols,but read 18 cols.
Debug the source,in file reader.hpp line Code:
quote_opened = escaped || (buffer_[i + 1] != delimiter::value);
seem wrong,May be is like this:
quote_opened = escaped && (buffer_[i + 1] != delimiter::value);
Or my wrong usage?
The text was updated successfully, but these errors were encountered:
I try read Denver Crime Data example file crime.csv,the first line get wrong col number.The header has 19 cols,but read 18 cols.
Debug the source,in file reader.hpp line Code:
quote_opened = escaped || (buffer_[i + 1] != delimiter::value);
seem wrong,May be is like this:
quote_opened = escaped && (buffer_[i + 1] != delimiter::value);
Or my wrong usage?
The text was updated successfully, but these errors were encountered: