| 353 | |
| 354 | |
| 355 | void SerializationString::deserializeTextCSV(IColumn & column, ReadBuffer & istr, const FormatSettings & settings) const |
| 356 | { |
| 357 | read(column, [&](ColumnString::Chars & data) { readCSVStringInto(data, istr, settings.csv); }); |
| 358 | } |
| 359 | |
| 360 | /// serializeMemComparable guarantees the encoded value is in ascending order for comparison, |
| 361 | /// encoding with the following rule: |
nothing calls this directly
no test coverage detected