Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions ydb/core/io_formats/csv_ydb_dump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -341,17 +341,17 @@ bool TYdbDump::ParseLine(TStringBuf line, const std::vector<std::pair<i32, NSche

Y_ABORT_UNLESS(cell);

if (!CheckCellValue(*cell, pType)) {
strError = TStringBuilder() << "Value check error: '" << value << "'";
return false;
}

TString parseError;
if (!MakeCell(*cell, value, pType, pool, parseError)) {
strError = TStringBuilder() << "Value parse error: '" << value << "' " << parseError;
return false;
}

if (!CheckCellValue(*cell, pType)) {
strError = TStringBuilder() << "Value check error: '" << value << "'";
return false;
}

numBytes += cell->Size();
}

Expand Down