mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
Fix for carriage return in tsv
This commit is contained in:
parent
584bd57f5c
commit
e590f15d3d
@ -337,8 +337,10 @@ void TabSeparatedFormatReader::skipRow()
|
||||
{
|
||||
++istr.position();
|
||||
if (!istr.eof() && *istr.position() == '\n')
|
||||
{
|
||||
++istr.position();
|
||||
return;
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user