| 819 | } |
| 820 | |
| 821 | void readCSVString(String & s, ReadBuffer & buf, const FormatSettings::CSV & settings) |
| 822 | { |
| 823 | s.clear(); |
| 824 | readCSVStringInto(s, buf, settings); |
| 825 | } |
| 826 | |
| 827 | template void readCSVStringInto<PaddedPODArray<UInt8>>(PaddedPODArray<UInt8> & s, ReadBuffer & buf, const FormatSettings::CSV & settings); |
| 828 |
no test coverage detected