mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 04:22:03 +00:00
fix style check
This commit is contained in:
parent
27a8bcc438
commit
80b2276599
@ -510,7 +510,6 @@ void readEscapedStringIntoImpl(Vector & s, ReadBuffer & buf)
|
||||
{
|
||||
next_pos = find_first_symbols<'\t', '\n', '\\'>(buf.position(), buf.buffer().end());
|
||||
}
|
||||
|
||||
appendToStringOrVector(s, buf, next_pos);
|
||||
buf.position() = next_pos;
|
||||
|
||||
@ -539,9 +538,8 @@ void readEscapedStringIntoImpl(Vector & s, ReadBuffer & buf)
|
||||
}
|
||||
|
||||
if (*buf.position() == '\r')
|
||||
{
|
||||
++buf.position();
|
||||
}
|
||||
++buf.position();
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -1987,7 +1985,4 @@ void readTSVField(String & s, ReadBuffer & buf)
|
||||
|
||||
template void readTSVField<true>(String & s, ReadBuffer & buf);
|
||||
template void readTSVField<false>(String & s, ReadBuffer & buf);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user