| 124 | |
| 125 | template <typename Parser> |
| 126 | void SerializationObject<Parser>::deserializeTextCSV(IColumn & column, ReadBuffer & istr, const FormatSettings & settings) const |
| 127 | { |
| 128 | deserializeTextImpl(column, [&](String & s) { readCSVStringInto(s, istr, settings.csv); }); |
| 129 | } |
| 130 | |
| 131 | template <typename Parser> |
| 132 | template <typename TSettings> |
nothing calls this directly
no test coverage detected