This commit is contained in:
Osyotr 2024-05-25 11:21:11 +03:00 committed by GitHub
commit 87bc25f9c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -426,7 +426,7 @@ inline Result CsvParser::read_row(std::map<std::string, std::string> & obj)
if (!getline(csv_stream, row))
return {ResultCode::END_OF_FILE, {}};
if (row == "\r")
if (row.empty() || row == "\r")
return ResultCode::OK;
const std::vector<std::string> fields_values = split_record(row);